GET
/
api
/
ai
/
table
/
{ai_table_id}
/
column
/
{ai_column_id}
curl --request GET \
  --url https://cite.petal.org/api/ai/table/{ai_table_id}/column/{ai_column_id} \
  --header 'Authorization: Bearer <token>'
{
  "ai_table_id": 123,
  "id": 123,
  "meta": {},
  "modified_at": "<string>",
  "name": "<string>",
  "order_id": 123,
  "query": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

ai_table_id
integer
required

The unique ID of the AI Table

ai_column_id
integer
required

The unique ID of the column

Response

200
application/json

OK

The response is of type object.