Add Ticket Comment

Post a comment on an existing support ticket.

POST
/api/v1/tickets/comment/add

Description

Adds a message to the ticket thread. ticketId accepts MongoDB ObjectId or numeric ticketNumber.

Request

Headers

HeaderValueRequired
AuthorizationBearer <access_token>Yes
Content-Typeapplication/jsonYes

Body Parameters

ParameterTypeRequiredDescription
ticketIdstringYesTicket ID or ticket number.
messagestringYesComment text (non-empty).
senderAppstringNoresolve-now or resolve-it (default resolve-now).

Example Request Body

{
  "ticketId": "674a1b2c3d4e5f6789012345",
  "message": "Please expedite the return label.",
  "senderApp": "resolve-now"
}

Response

Related Endpoints

Did this page help you?