Skip to main content

Create Response

POST /tickets/:ticket_id/posts/


Example URL

https://system_domain/api/v2/tickets/123/posts/


PATH Parameters

ParameterTypeRequiredDescription
ticket_idnumberYesTechnical ID of the ticket

Request Body Parameters (form-data)

ParameterTypeRequiredDescription
textstringYesResponse text
user_idnumberNoID of the post creator; if not specified, the post is sent on behalf of the API user
filesarrayNoArray of files (available only in form_data format)

Example Request Body (form-data)

KeyValue
text"Hello!"
user_id2

Example Response:

Example Response
{
"data": {
"ticket_id": 123,
"id": 16091,
"user_id": 2,
"text": "Hello!",
"date_created": "13:41:06 12.03.2025",
"date_updated": "13:41:06 12.03.2025",
"files": []
}
}