Request
POST /api/tickets/{ticket_id}/actualizar
The actor’s identity (id, nombre, email, rol) is read automatically from your JWT token and recorded in the ticket history. You do not pass actor information in the request body.
Path parameters
UUID of the ticket to update (e.g.
e3b2c1d4-5a6f-7890-abcd-ef1234567890).Body parameters
New status for the ticket. Between 3 and 50 characters (e.g.
EN_PROCESO, CERRADO, RESUELTO).New priority level name. Between 3 and 50 characters (e.g.
ALTA, MEDIA, BAJA).Area to assign the ticket to. Between 2 and 100 characters (e.g.
TECNOLOGIA, MESA).Agent response or note to record on the ticket. Minimum 5 characters. This text is visible to the requester when they look up their ticket.
Response
Returns a200 OK with a confirmation message.
Always returns
"Ticket actualizado correctamente" on success.Error codes
| Status | Description |
|---|---|
400 | Invalid request body — validation failed (e.g. respuesta too short, field missing). |
401 | Missing or invalid authentication token. |
403 | Your role does not permit access, or (for AREA agents) the ticket is assigned to a different area. |
404 | No ticket found with the specified UUID. |