v1
latestOpenAPI 3.1.02026-07-241765501.1 MBTasks
Update tasks
🔐 This endpoint requires HTTP authentication (either Basic or Bearer). For authenticating with Bearer token, required scopes are: catalog(w).
Update the status of a list of tasks to queue or cancel them.
patch/v1/tasks
Request body
Example request
{
"tasks": [
{
"id": 1,
"status": "QUEUED"
}
]
}Response
OK
Example response
{
"tasks": [
{
"result": {
"index_built": true,
"ingestion_warnings": [
{
"code": "MISSING_FIELD",
"message": "Field 'price' is missing for item 'product-123'",
"data": {
"item_id": "product-123",
"field": "price"
}
}
]
}
}
]
}