Skip to main content
POST
/
dispatch
/
tasks
/
{task_id}
/
revise
Revise a completed API
curl --request POST \
  --url https://api.parse.bot/dispatch/tasks/{task_id}/revise \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "revision": "<string>"
}
'
{
  "task_id": "<string>",
  "revision_type": "<string>"
}

Authorizations

X-API-Key
string
header
required

API key for programmatic access. Get yours at https://parse.bot or via POST /account/api-key with JWT auth.

Path Parameters

task_id
string
required

Body

application/json
revision
string
required

Natural language description of what to change (e.g. 'add a search by category endpoint')

Response

200 - application/json

Revision queued

task_id
string

ID of the revision task (may be the original if no agent run was needed)

revision_type
string

Always 'revision' — a single agent handles all revision types