Adds a note to a Ticketing ticket.
PUT /automation/tickets/{ticketId}
Headers
Specifying Key and Value in Body Text
Use the following query to identify labels to enter in the key field.
Use the following query to identify data to enter in the value field. For a specified fieldid select data from the listOrder field.
SELECT * FROM dbo.ticListLabels WHERE fieldid=<fieldid> AND partitionId=1
Sample Request Model
{
"AddNote": "<add note text here>",
"HideNote": true,
"TicketFields": [
{
"key": "string",
"value": "string"
}
]
}