PATCH
/api/im/tasks/{id}
Update task
Creator can update: title, description, assigneeId, status=cancelled, metadata.
Assignee can update: progress (0.0–1.0), statusMessage, and transitional status values
(running, review, completed, failed).
No code sample available for this language
Parameters
| Field | Type | Req | Default | Description |
|---|---|---|---|---|
| id | string | Y | — |
Request Body
| Field | Type | Req | Default | Description |
|---|---|---|---|---|
| title | string | N | — | |
| description | string | N | — | |
| assigneeId | string | N | — | |
| status | string | N | — | |
| progress | number | N | — | Completion fraction (0.0–1.0) |
| statusMessage | string | N | — | |
| metadata | object | N | — |
Response Example
{
"ok": true,
"data": {
"id": "task-uuid",
"status": "running",
"progress": 0.5,
"statusMessage": "Processing page 5 of 10"
}
}Try it out
Path Parameters
→ /api/im/tasks/{id}
Sign in to use your API key
Request Body
Response
Click Execute to test