Obter tickets do utilizador

GET /tickets-user

Retorna os tickets associados ao utilizador autenticado, incluindo o assunto, mensagem, data de criação, status e resposta.

Responses

  • 200 application/json

    Tickets do utilizador retornados com sucesso

    Hide response attributes Show response attributes object
  • 500 application/json

    Erro ao Procurarr os tickets

    Hide response attributes Show response attributes object
GET /tickets-user
curl \
 --request GET 'http://localhost:8000/tickets-user'
Response examples (200)
[
  {
    "subject": "string",
    "message": "string",
    "created_at": "2025-05-04T09:42:00Z",
    "status": "string",
    "response": "string"
  }
]
Response examples (500)
{
  "message": "string",
  "error": "string"
}