latestOpenAPI 3.0.02026-08-137192110.1 KB

75294f591cc2

Reverse ETL Syncs

List Reverse ETL Syncs

List all Reverse ETL Syncs in pages sorted by their creation date.

get/reverse_etl_syncs

Query parameters

starting_afterstring
Example:ewK8sDoLNI4CFR

The cursor to use in pagination. Use the value of the next_cursor field from the response of a previous list request.

limitinteger

The number of items to return in a single page.

destination_connection_idstring
Example:conn_12345

Filter Reverse ETL Syncs by the associated Destination Connection ID.

Response

has_moreboolean required

Indicates whether there are more items to be fetched in the subsequent pages.

next_cursorstring

The cursor to use in pagination. Use this value as starting_after to get the next page.

Example response

{
  "has_more": true,
  "next_cursor": "VeN1GjhVIq1D9h",
  "data": [
    {
      "id": "OoORhGXUVjsqFG",
      "enabled": true,
      "source_type": "Transform",
      "source_id": "mdl_123",
      "transform_id": "mdl_123",
      "destination_connection_id": "conn_456",
      "destination_integration_id": "hubspot",
      "object_type_id": "Q29udGFjdHx8Y29udGFjdA",
      "sync_interval": "0 0 * * *",
      "orchestration_workflow_id": "3LIw2FdxoByya9",
      "operation": {
        "mode": "upsert",
        "mappings": [
          {
            "source_property_id": "email",
            "destination_property_id": "email",
            "primary_key": true
          }
        ]
      },
      "created_at": "2020-01-01T00:00:00.000Z",
      "updated_at": "2020-01-01T00:00:00.000Z"
    }
  ]
}