GET
/
syncs
curl --request GET \
  --url https://api.fabra.io/syncs \
  --header 'X-API-KEY: <api-key>'
{
  "syncs": [
    {
      "id": 10,
      "display_name": "Event Sync",
      "end_customer_id": "abc123",
      "source_id": 1,
      "destination_id": 2,
      "object_id": 3,
      "namespace": "end_customer_bigquery_dataset",
      "table_name": "end_customer_events",
      "custom_join": "select * from events join additional_properties on events.id = additional_properties.event_id;",
      "cursor_field": "updated_at",
      "primary_key": "event_id",
      "frequency": 123,
      "frequency_units": "minutes",
      "field_mappings": [
        {
          "source_field_name": "event_name",
          "destination_field_name": "event"
        }
      ]
    }
  ]
}

Authorizations

X-API-KEY
string
headerrequired

Response

200 - application/json
syncs
object[]