Skip to main content

Update Response

PUT /tickets/:ticket_id/posts/:post_id/


URL Example

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


PATH Parameters

ParameterTypeRequiredDescription
ticket_idnumberYesTechnical ID of the ticket
post_idnumberYesID of the response to be updated

Request Body Parameters (JSON)

ParameterTypeRequiredDescription
textstringYesMessage text

Request Body Example (JSON)

{
"text": "Updated response text"
}

Example Response:

Example Response
{
"data": {
"ticket_id": 123,
"id": 36982,
"user_id": 1,
"text": "Updated response text",
"date_created": "13:44:50 12.03.2025",
"date_updated": "13:45:35 12.03.2025",
"files": []
}
}