Close Help Desk Message
Marks a help desk message as closed. Only the ticket author can close their own tickets.
Authentication
Requires a valid customer bearer token.
Path Parameters
Numeric identifier of the message to close.
Request Body
No request body required.
Response
Returns a 200 OK on success.
Examples
Close a ticket
PUT /api/public/helpdesk/messages/501/close
Authorization: Bearer {token}
TypeScript Integration
import endpoints from '@/api/endpoints'
await httpClient.put(endpoints.helpDesk.close(501))