Integrations
Get integration tables
Integrations
Get integration tables
GET
/
integrations
/
{id}
/
schemas
curl --request GET \
--url https://api.matia.io/v1/integrations/{id}/schemas \
--header 'x-api-key: <api-key>'
{
"code": "<string>",
"data": {
"schemas": {
"schema_1": {
"name_in_destination": "<string>",
"enabled": true,
"tables": {
"table_1": {
"name_in_destination": "<string>",
"enabled": true,
"sync_mode": "<string>",
"cursor_field": "<string>"
},
"table_2": {
"name_in_destination": "<string>",
"enabled": true,
"sync_mode": "<string>"
}
}
},
"schema_2": {
"name_in_destination": "<string>",
"enabled": true,
"tables": {
"table_1": {
"name_in_destination": "<string>",
"enabled": true,
"sync_mode": "<string>"
},
"table_2": {
"name_in_destination": "<string>",
"enabled": true,
"sync_mode": "<string>"
}
}
}
}
}
}
Authorizations
Path Parameters
The ID of the integration
Response
200
application/json
Successful operation
curl --request GET \
--url https://api.matia.io/v1/integrations/{id}/schemas \
--header 'x-api-key: <api-key>'
{
"code": "<string>",
"data": {
"schemas": {
"schema_1": {
"name_in_destination": "<string>",
"enabled": true,
"tables": {
"table_1": {
"name_in_destination": "<string>",
"enabled": true,
"sync_mode": "<string>",
"cursor_field": "<string>"
},
"table_2": {
"name_in_destination": "<string>",
"enabled": true,
"sync_mode": "<string>"
}
}
},
"schema_2": {
"name_in_destination": "<string>",
"enabled": true,
"tables": {
"table_1": {
"name_in_destination": "<string>",
"enabled": true,
"sync_mode": "<string>"
},
"table_2": {
"name_in_destination": "<string>",
"enabled": true,
"sync_mode": "<string>"
}
}
}
}
}
}