Update Ticket Custom Field Value

All API requests should contain authorization headers.

Request

PATCH /tickets/{ticketId}/customFields

Query Parameters

NameTypeRequiredComments

ticketId

integer

yes

Id of ticket you want to update

Request Body

[
    {
        "customFieldId": 95475,
        "value": "some text"
    },
    {
        "customFieldId": 96340,
        "value": "+74216231562"
    }
]

Body of request should contain array of Custom Field value objects.

Response

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

Last updated