API Reference
Get Table Syncs
API Reference
Get Table Syncs
GET
/
api
/
replication
/
table_syncs_v1
curl --request GET \
--url https://console.chakra.dev/api/replication/table_syncs_v1 \
--header 'Authorization: Bearer <token>'
{
"databases": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"source": {
"credentials": {}
},
"destination": {
"credentials": {}
},
"tables": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"source_details": {},
"destination_details": {}
}
]
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Table syncs grouped by replication
curl --request GET \
--url https://console.chakra.dev/api/replication/table_syncs_v1 \
--header 'Authorization: Bearer <token>'
{
"databases": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"source": {
"credentials": {}
},
"destination": {
"credentials": {}
},
"tables": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"source_details": {},
"destination_details": {}
}
]
}
]
}