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: docs/ReverseEtlApi.md
+80Lines changed: 80 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ All URIs are relative to *https://api.segmentapis.com*
9
9
|[**deleteReverseEtlModel**](ReverseEtlApi.md#deleteReverseEtlModel)|**DELETE** /reverse-etl-models/{modelId} | Delete Reverse Etl Model |
10
10
|[**getReverseETLSyncStatus**](ReverseEtlApi.md#getReverseETLSyncStatus)|**GET** /reverse-etl-models/{modelId}/syncs/{syncId} | Get Reverse ETL Sync Status |
11
11
|[**getReverseEtlModel**](ReverseEtlApi.md#getReverseEtlModel)|**GET** /reverse-etl-models/{modelId} | Get Reverse Etl Model |
12
+
|[**listReverseETLSyncStatusesFromModelAndSubscriptionId**](ReverseEtlApi.md#listReverseETLSyncStatusesFromModelAndSubscriptionId)|**GET** /reverse-etl-models/{modelId}/subscriptionId/{subscriptionId}/syncs | List Reverse ETL Sync Statuses from Model And Subscription Id |
12
13
|[**listReverseEtlModels**](ReverseEtlApi.md#listReverseEtlModels)|**GET** /reverse-etl-models | List Reverse Etl Models |
13
14
|[**updateReverseEtlModel**](ReverseEtlApi.md#updateReverseEtlModel)|**PATCH** /reverse-etl-models/{modelId} | Update Reverse Etl Model |
List Reverse ETL Sync Statuses from Model And Subscription Id
390
+
391
+
Get the sync statuses for a Reverse ETL mapping subscription. The sync status includes all detailed information about the sync - sync status, duration, details about the extract and load phase if applicable, etc. The default page count is 10, and then the next page can be fetched by passing the `cursor` query parameter.
BigDecimal count =newBigDecimal(78); // BigDecimal | The number of items to retrieve in a page, between 1 and 100. Default is 10 This parameter exists in alpha.
416
+
String cursor ="cursor_example"; // String | The page to request. Acceptable values to use are from the `current`, `next`, and `previous` keys. This parameter exists in alpha.
417
+
try {
418
+
ListReverseETLSyncStatusesFromModelAndSubscriptionId200Response result = apiInstance.listReverseETLSyncStatusesFromModelAndSubscriptionId(modelId, subscriptionId, count, cursor);
419
+
System.out.println(result);
420
+
} catch (ApiException e) {
421
+
System.err.println("Exception when calling ReverseEtlApi#listReverseETLSyncStatusesFromModelAndSubscriptionId");
|**count**|**BigDecimal**| The number of items to retrieve in a page, between 1 and 100. Default is 10 This parameter exists in alpha. |[optional]|
439
+
|**cursor**|**String**| The page to request. Acceptable values to use are from the `current`, `next`, and `previous` keys. This parameter exists in alpha. |[optional]|
0 commit comments