tasks

Skip multiple tasks at the same time

You can skip up to 100 tasks at a time.

This can be a large request and may take some time to complete. But you will get response immediately after the request is submitted.

On request of this API, you will receive a bulkActionId that can be used to check the status of the skip process.

To check the status of the skip process, you can use the v1/tasks/bulk-status/{bulkActionId} API.

If there is any error during the skip process, you will receive detailed error information in the status response.

post/v1/tasks/bulk-skip

Request body

taskIdsstring[] required

Array of task IDs to skip

Example request

{
  "taskIds": [
    "lP0Zg2keMz",
    "MP0Cg1keMa",
    "BS0Zg5keMq"
  ]
}

Response

Skip request accepted. Use the bulk status API to track results.

bulkActionIdstring required

Unique identifier for the bulk action

messagestring required

Confirmation message

statusCheckUrlstring required

URL to check the status of the bulk action

Example response

{
  "bulkActionId": "lP0Zg2keMz",
  "message": "Snooze request accepted. Use the bulk status API to track results.",
  "statusCheckUrl": "/v1/tasks/bulk-status/lP0Zg2keMz"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.