List Replies

All API requests should contain authorization headers.

Request

GET /tickets/{ticketId}/replies

Query Parameters

NameTypeRequiredComments

ticketId

integer

yes

Id of ticket you want to get replies

Response

{
	"data": [
		{
			"attachments": [],
			"author": {
				"id": "dd5a1056-98c7-4e32-9bc3-1c5aa25cf403",
				"name": "Anonymous user",
				"image": null,
				"email": null,
				"status": "client",
				"isBot": false
			},
			"ccEmails": [],
			"creationTime": "2021-12-15T23:57:26.8940447+00:00",
			"htmlMessage": "Anonymisert innhold",
			"id": 26960194,
			"level": 0,
			"message": "Anonymisert innhold",
			"parentReplyId": null,
			"properties": {
				"isByTeam": false,
				"isDraft": false,
				"isHidden": false
			},
			"ticketId": 13316792,
			"toEmails": []
		}
	],
	"errorCode": -1,
	"errorText": null
}

Data field will contain an array of Reply models.

Last updated