# Retrieve a ticket

`GET https://api.cademi.com.br/api/v3/support/tickets/{ticket_id}`

Operation ID: `tickets.get` · API v3

Retrieves a support ticket by its public ID.

The response includes an `ETag` representing the current revision. Send this value in the `If-Match` header when updating the ticket to avoid overwriting a newer version.

If the credentials are restricted to specific users or products, tickets outside that scope return `404 Not Found`, the same response as a ticket that does not exist.

Required permissions: `tickets.read`.

## Parameters

| Name | In | Type | Required | Description |
|---|---|---|---|---|
| `ticket_id` | path | string | yes |  |

## Responses

### 200

Returns the requested ticket.

### 401

The credential is missing, malformed, expired, or revoked.

Body: Error.

### 403

The current credentials do not have the permission required by this operation.

Body: Error.

### 404

The ticket was not found or is not accessible with the current credentials.

Body: Error.

Full schema: https://cademi.dev/openapi/v3.json
