Skip to content

Commit 981b4e5

Browse files
committed
Added status codes required in API responses.
1 parent 217463a commit 981b4e5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • custom-data-connector/postgresdb-ref-impl-data-connector

custom-data-connector/postgresdb-ref-impl-data-connector/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ This implementation is a reference implementation for reading or writing data to
55

66
The service must implement the following three Analytics Runtime APIs.
77

8-
1. HEALTHCHECK (/api/v1/analytics/customdata/healthcheck) — used to check to the health of your Custom Data Connector service before executing an orchestration.
9-
2. READ (/api/v1/analytics/customdata/read) — used to read data passed to the analytic (input data) from the external data source.
10-
3. WRITE (/api/v1/analytics/customdata/write) — used to write the data produced by an analytic (output data) to the external data source.
8+
1. HEALTHCHECK (/api/v1/analytics/customdata/healthcheck) — used to check to the health of your Custom Data Connector service before executing an orchestration. Successful execution of the API must return a Status 200 response.
9+
2. READ (/api/v1/analytics/customdata/read) — used to read data passed to the analytic (input data) from the external data source. Successful execution of the API must return a Status 200 response.
10+
3. WRITE (/api/v1/analytics/customdata/write) — used to write the data produced by an analytic (output data) to the external data source. Successful execution of the API must return a Status 201 response.
1111

1212
The reference implementation includes support for the read, write and healthcheck APIs.
1313

0 commit comments

Comments
 (0)