Retrieve Support Ticket
Returns the current status of a support ticket previously created via Create Support Ticket. The ticket reference (issueKey) becomes available once the ticket reaches the CREATED status.
To be notified automatically when a ticket is resolved, subscribe to the Support Ticket webhook events. You can also check a specific ticket on demand with this endpoint.
This endpoint must be enabled for your account by the Ripio team. While support tickets are disabled, requests return 403 with the error code 20061.
Checking a ticket’s status
Use this endpoint to look up the current status of a ticket created via Create Support Ticket, passing theticketId returned there.
The status field follows this lifecycle:
status | Meaning |
|---|---|
PENDING | The ticket was accepted and is still being processed. issueKey is null. |
CREATED | The ticket was successfully registered with Ripio’s support team. issueKey is populated. |
FAILED | The ticket could not be registered. issueKey is null. |
Authorizations
Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.
Path Parameters
The ticketId returned by the Create Support Ticket endpoint.
Response
Current state of the support ticket.
Ripio's identifier for the support ticket. Use it to correlate the Support Ticket webhook events, or to look up the ticket's status on demand via the Retrieve Support Ticket endpoint.
Lifecycle status of the ticket. PENDING: accepted and being processed (no reference yet). CREATED: successfully registered in Ripio's support system; issueKey is populated. FAILED: the ticket could not be registered.
PENDING, CREATED, FAILED Human-readable reference of the ticket in Ripio's support system (e.g. SUP-1234). null until the ticket reaches the CREATED status.