Replace Reply Tags

All API requests should contain authorization headers.

Request

PUT /tickets/{ticketId}/replies/{replyId}/tags

Query Parameters

NameTypeRequiredComments

ticketId

integer

yes

Id of ticket you want to replace tags

replyId

integer

yes

Id of reply you want to replace tags

Request Body

Body of request should contain the following array of Tag models serialized to JSON.

[
    {
        "id": 1386,
        "text": "Email"
    },
    {
        "id": 1387,
        "text": "Important"
    }
]

Response

{
  "data": {},
  "errorCode": -1,
  "errorText": null
}

Last updated