Obter tickets do utilizador
Retorna os tickets associados ao utilizador autenticado, incluindo o assunto, mensagem, data de criação, status e resposta.
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"
}