Skip to main content
PUT
/
api
/
public
/
helpdesk
/
messages
/
{messageId}
/
close

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

messageId
number
required
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}
HTTP/1.1 200 OK

TypeScript Integration

import endpoints from '@/api/endpoints'

await httpClient.put(endpoints.helpDesk.close(501))