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

x-api-key
string
header
required

Path Parameters

id
string
required

The ID of the integration

Response

200
application/json
Successful operation
code
string
data
object