Obter todos os tickets de suporte
Retorna todos os tickets de suporte registrados no sistema.
GET
/tickets
curl \
--request GET 'http://localhost:8000/tickets'
Response examples (200)
[
{
"id": 42,
"subject": "string",
"message": "string",
"created_at": "2025-05-04T09:42:00Z",
"status": "string",
"response": "string"
}
]
Response examples (500)
{
"message": "string",
"error": "string"
}