For the complete documentation index, see llms.txt. This page is also available as Markdown.

Add Note To Ticket

Request

POST /tickets/{ticketId}/notes

Query Parameters

Name
Type
Required
Comments

ticketId

integer

yes

Id of ticket you want to create note in

Request Body

{
	"attachments": [
		{
			"isContentPart": null,
			"name": "filename.png",
			"url": "https://your.attachment.url/filename.png"
		}
	],
	"author": {
		"email": "staffEmailLogin@domain.com"
	},
	"htmlMessage": null,
	"message": "Note text"
}

Body of request should contain the following model serialized to JSON.

Field
Type
Comments

attachments

array of Base Attachment models

Note attachments

author

Note creator info

htmlMessage

string

Note html content

message

string

Note content

Response

Data field will contain Note model.

Last updated

Was this helpful?