Get Help Desk Message
Returns the complete details of a specific help desk message (support ticket), including status and associated metadata.
Authentication
Requires a valid customer bearer token. The message must belong to the authenticated customer.
Path Parameters
Numeric identifier of the help desk message. Returned as Id from the message list.
Query Parameters
Comma-separated list of field paths to include in the response. When provided, only the
specified fields are returned — useful for reducing payload size. Supports nested paths
using dot notation. Example: _shape=Subject,MessageText,Closed,Comments.
Response
Returns a HelpDeskMessage object.
Unique identifier for the message.
Subject line of the support ticket.
Full body text of the message.
true when the ticket has been closed.
Creation timestamp in ISO 8601 format.
Examples
Fetch message details
GET /api/public/helpdesk/messages/501
Authorization: Bearer {token}
TypeScript Integration
import endpoints from '@/api/endpoints'
const { resource: message } = useTypedData(httpClient, endpoints.helpDesk.one(501))