Skip to main content
POST
/
api
/
v1
/
{issue_identifier}
/
transition
Transition an issue to a new state
curl --request POST \
  --url http://localhost:4000/api/v1/{issue_identifier}/transition \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "target_state": "<string>"
}
'
{
  "ok": true,
  "from": "<string>",
  "to": "<string>",
  "reason": "<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)

Body

application/json
target_state
string
required
Minimum string length: 1

Response

Transition applied

ok
boolean
required
from
string
to
string
reason
string
Last modified on March 31, 2026