You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: custom-data-connector/postgresdb-ref-impl-data-connector/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,9 +5,9 @@ This implementation is a reference implementation for reading or writing data to
5
5
6
6
The service must implement the following three Analytics Runtime APIs.
7
7
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.
11
11
12
12
The reference implementation includes support for the read, write and healthcheck APIs.
0 commit comments