Status
The status endpoints let you track the lifecycle of operations created via/v1/biz/do.
GET /v1/biz/status/:mainTaskIdGET /v1/biz/status/:mainTaskId/:fileTaskId
ExternalStatusURI, ExternalStatusFileData, and ExternalStatusResponse types.
Status schema
Get main task status
Get specific file task status
fileTaskId is present, the response narrows to the matching file task (if found).
Polling vs. webhooks
- Polling – use the status endpoints from your backend or via the official SDK (see SDKs → Node).
- Webhooks – for production workloads, configure webhooks to receive
operation.completed,operation.failed,fileTask.completed, andfileTask.failedevents instead of (or in addition to) polling.