Update Response
PUT /tickets/:ticket_id/posts/:post_id/
URL Example
https://system_domain/api/v2/tickets/123/posts/36982/
PATH Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
ticket_id | number | Yes | Technical ID of the ticket |
post_id | number | Yes | ID of the response to be updated |
Request Body Parameters (JSON)
| Parameter | Type | Required | Description |
|---|---|---|---|
text | string | Yes | Message 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": []
}
}