Bulk Sync

List Bulk Syncs

GET

Response

This endpoint returns an object
data
list of objectsOptional

Errors

GET
1curl https://app.polytomic.com/api/bulk/syncs \
2 -H "Authorization: Bearer <token>"
1{
2 "data": [
3 {
4 "active": true,
5 "destination_configuration": {
6 "schema": "my_schema"
7 },
8 "destination_connection_id": "248df4b7-aa70-47b8-a036-33ac447e668d",
9 "discover": true,
10 "id": "248df4b7-aa70-47b8-a036-33ac447e668d",
11 "mode": "replace",
12 "name": "My Bulk Sync",
13 "organization_id": "248df4b7-aa70-47b8-a036-33ac447e668d",
14 "policies": [
15 "248df4b7-aa70-47b8-a036-33ac447e668d"
16 ],
17 "schedule": {
18 "frequency": "manual",
19 "day_of_month": "1",
20 "day_of_week": "monday",
21 "hour": "0",
22 "minute": "0",
23 "month": "1"
24 },
25 "source_configuration": {
26 "replication_slot": "slot"
27 },
28 "source_connection_id": "248df4b7-aa70-47b8-a036-33ac447e668d"
29 }
30 ]
31}