GET
/
api
/
v1
/
syncs
/
{id}
curl --request GET \
  --url https://api.squared.ai/api/v1/syncs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "type": "syncs",
  "attributes": {
    "source_id": 123,
    "destination_id": 123,
    "model_id": 123,
    "configuration": {},
    "schedule_type": "automated",
    "sync_mode": "full_refresh",
    "sync_interval": 123,
    "sync_interval_unit": "minutes",
    "cron_expression": "<string>",
    "cursor_field": "<string>",
    "stream_name": "<string>",
    "status": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json
Sync details retrieved successfully
id
string
type
enum<string>
Available options:
syncs
attributes
object