Update Note
All API requests should contain authorization headers.
Request
PATCH /tickets/{ticketId}/notes/{noteId}Query Parameters
Name
Type
Required
Comments
ticketId
integer
yes
Id of ticket note added in
noteId
integer
yes
Id of note you want to update
Request Body
{
"attachments": [
{
"isContentPart": null,
"name": "filename.png",
"url": "https://your.attachment.url/filename.png"
}
],
"htmlMessage": null,
"message": "Updated note text"
}Body of request should contain the following model serialized to JSON.
Field
Type
Comments
htmlMessage
string
Note html content
message
string
Note content
Data field will contain updated Note model.
Last updated
Was this helpful?