Skip to main content
POST
/
tasks
/
{id}
/
skip
Skip task
curl --request POST \
  --url https://api.amplemarket.com/tasks/{id}/skip \
  --header 'Authorization: Bearer <token>'
{
  "_errors": [
    {
      "code": "invalid_operation",
      "title": "Invalid Operation",
      "detail": "Task has status \"completed\" and cannot be skipped"
    }
  ],
  "object": "error"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Task id

Response

Successful