GET
/
data
/
projects
/
{projectId}
/
catalogs
/
{catalogId}
/
schemas
/
{schemaName}
/
tables
curl --request GET \
  --url https://partner.peaka.studio/api/v1/data/projects/{projectId}/catalogs/{catalogId}/schemas/{schemaName}/tables \
  --header 'Authorization: Bearer <token>'
[
  {
    "catalogId": "544639856899260964",
    "catalogName": "airtable2",
    "schemaName": "test",
    "tableName": "projects",
    "isCacheable": false,
    "isDynamicTable": false,
    "isCached": false
  },
  {
    "catalogId": "544639856899260964",
    "catalogName": "airtable2",
    "schemaName": "test",
    "tableName": "testTable",
    "isCacheable": false,
    "isDynamicTable": false,
    "isCached": false
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

projectId
string
required

ID of the project

catalogId
string
required

ID of the catalog

schemaName
string
required

Name of the schema

Response

200 - application/json
Successful operation

The response is of type object[].