Skip to main content
GET
/
api
/
v1
/
{issue_identifier}
/
attempts
List attempts for an issue
curl --request GET \
  --url http://localhost:4000/api/v1/{issue_identifier}/attempts \
  --header 'Authorization: Bearer <token>'
{
  "attempts": [
    {}
  ],
  "current_attempt_id": "<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

Attempts list

attempts
object[]
required
current_attempt_id
string | null
required
Last modified on March 31, 2026