curl --request GET \
--url https://sync.useparagon.com/api/syncs \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"integration": "<string>",
"pipeline": "<string>",
"status": "INITIALIZING",
"configurationName": "<string>",
"dateCreated": "2023-11-07T05:31:56Z",
"dateUpdated": "2023-11-07T05:31:56Z"
}
]
}List all Syncs for a Connected User
curl --request GET \
--url https://sync.useparagon.com/api/syncs \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"integration": "<string>",
"pipeline": "<string>",
"status": "INITIALIZING",
"configurationName": "<string>",
"dateCreated": "2023-11-07T05:31:56Z",
"dateUpdated": "2023-11-07T05:31:56Z"
}
]
}Paragon User Token. Add to the Authorization header of your requests.
List of Syncs
Show child attributes
Unique identifier for the Sync
The integration this Sync uses
The type of Synced Object being synced
Current state of Sync activity. Possible values:
INITIALIZING: The Sync has just been created and is pending its first run.ACTIVE: The Sync is actively fetching new data.IDLE: The Sync has completed and is watching for updates to synced data.
summary.lastSyncedAt to see if the sync has successfully completed.DISABLED: The Sync has been paused temporarily by the Disable a Sync endpoint.ERRORED: The Sync has been suspended due to an error. Check Webhook Events for additional error details.INITIALIZING, ACTIVE, IDLE, DISABLED, ERRORED The name of the Sync configuration as provided when the Sync was created
The date and time the Sync was created
The date and time the Sync was last updated
Was this page helpful?