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": {
        "nameInDestination": "<string>",
        "enabled": true,
        "tables": {
          "table": {
            "nameInDestination": "<string>",
            "enabled": true,
            "syncMode": "<string>",
            "cursorField": "<string>",
            "columns": {
              "column": {
                "nameInDestination": "<string>",
                "enabled": true,
                "hashed": true,
                "isPrimaryKey": true
              }
            }
          }
        }
      }
    }
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

The ID of the integration

Response

200
application/json
Successful operation

The response is of type object.