GET
/
integrations
/
{id}
/
schemas
/
{schema}
/
tables
/
{table}
/
columns
curl --request GET \
  --url https://api.matia.io/v1/integrations/{id}/schemas/{schema}/tables/{table}/columns \
  --header 'x-api-key: <api-key>'
{
  "code": "<string>",
  "data": {
    "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

schema
string
required

The schema name

table
string
required

The table name

Response

200
application/json
Successful operation

The response is of type object.