Skip to main content
POST
/
tables
/
{tableId}
/
cancel
Stop a table's work
curl --request POST \
  --url https://origami.chat/api/v2/tables/{tableId}/cancel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "columns": [
    "<string>"
  ],
  "dryRun": false
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

tableId
string<uuid>
required

Body

application/json
columns
string[]

Column slugs to scope the stop to. Omit to stop every column.

Minimum array length: 1
Minimum string length: 1
Pattern: \S
dryRun
boolean
default:false

Response

{ tableId, cancelledCells, cancelledLeadSourceJobs } — or the dryRun report.