GET
/
integrations
/
{id}
/
schemas
/
{schema}
/
tables
/
{table}
/
columns
cURL
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

Successful operation

code
string
data
object