Comment on page
Update Note
PATCH /tickets/{ticketId}/notes/{noteId}
Name | Type | Required | Comments |
ticketId | integer | yes | Id of ticket note added in. |
noteId | integer | yes | Id of note you want to update. |
{
"attachments": [{
"isContentPart": null,
"name": "filename.png",
"url": "https://your.attachment.url/filename.png"
}
],
"message": "Update note text"
}
Field | Type | Comments |
attachments | Reply attachments | |
message | string | Note content |
{
"data": {
"id": 2980459,
"message": "Updated note text",
"attachments": [],
"author": {
"id": "0da5a9e8-90ef-403f-873c-e20e4d298558",
"name": "Staff name",
"image": "",
"email": "[email protected]",
"status": "team",
"isBot": false
},
"mentionedUsers": [],
"creationTime": "2020-03-05T19:41:17.7780842+00:00"
},
"errorCode": -1,
"errorText": null
}
Data
field will contain updated note model.Last modified 1mo ago