Skip to main content
POST
/
api
/
v1
/
{issue_identifier}
/
abort
Abort a running issue
curl --request POST \
  --url http://localhost:4000/api/v1/{issue_identifier}/abort \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "status": "<string>",
  "already_stopping": true,
  "requested_at": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

issue_identifier
string
required

Issue identifier (e.g. ENG-123)

Response

Already stopping

ok
boolean
required
status
string
required
Allowed value: "stopping"
already_stopping
boolean
required
requested_at
string
required
Last modified on March 31, 2026