POST
/
api
/
ai
/
table
/
{ai_table_id}
/
cell
/
{ai_cell_id}
/
update
curl --request POST \
  --url https://cite.petal.org/api/ai/table/{ai_table_id}/cell/{ai_cell_id}/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "meta": {},
  "response": "<string>"
}'
{
  "ai_column_id": 123,
  "document_id": 123,
  "id": 123,
  "meta": {},
  "modified_at": "<string>",
  "response": "<string>",
  "task_id": "<string>",
  "task_status": "<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_cell_id
integer
required

The unique ID of the cell

Body

application/json

Response

200
application/json

OK

The response is of type object.