Skip to main content

Resume a paused task — POST /v3/bots/runs/{task_id}/resume

Requests the resumption of a paused Bot task. SkillFlow tasks return error code `10879`; tasks that are not paused return `10127`. Resume is asynchronous, so the returned status can remain `paused` until processing continues.

Written by Maggie

POST /v3/bots/runs/{task_id}/resume

Requests the resumption of a paused Bot task. SkillFlow tasks return error code `10879`; tasks that are not paused return `10127`. Resume is asynchronous, so the returned status can remain `paused` until processing continues.

Authentication

HTTPBearer

Parameters

  • task_id (path, string, required) — Task ID

Responses

200 — Resume requested.

{  "task_id": "string",  "status": "created",  "updated_at": "2026-01-01T00:00:00Z"}

400 — Run not found. Returns error code 10112.

{  "code": 123,  "msg": "Invalid task_id",  "data": null,  "ts": 1786634400000,  "time": "2026-08-13 18:00:00",  "traceId": "a1b2c3d4e5f6"}

500 — Internal Server Error

{  "code": 123,  "msg": "Invalid task_id",  "data": null,  "ts": 1786634400000,  "time": "2026-08-13 18:00:00",  "traceId": "a1b2c3d4e5f6"}

Did this answer your question?