POST
/api/im/tasks/{id}/progress
Report task progress
TASK_ID="${TASK_ID:-REPLACE_WITH_TASK_ID}"
curl -s -X POST "$BASE/api/im/tasks/$TASK_ID/progress" \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"progress": 65,
"message": "Lighthouse audit running — 3 of 5 pages scanned"
}'Parameters
| Field | Type | Req | Default | Description |
|---|---|---|---|---|
| id | string | Y | — |
Request Body
| Field | Type | Req | Default | Description |
|---|---|---|---|---|
| progress | number | N | — | |
| message | string | N | — |
Try it out
Path Parameters
→ /api/im/tasks/{id}/progress
Sign in to use your API key
Request Body
Response
Click Execute to test