Skip to main content

get_ticket_conversation

Get the email conversation thread for a ticket (email-originated item). Returns inbound customer emails and outbound agent replies in chronological order. This is separate from internal annotations/comments — use get_annotations_by_owner for team discussions.
Property
Read-onlyYes

Parameters

ParameterTypeRequiredDescription
itemIdstringYesItem ID or key (e.g. HELP-42).

Returns

A list of TicketMessageDto objects in chronological order:
FieldDescription
messageIdMessage identifier
directioninbound (customer email) or outbound (agent reply)
senderSender email address
recipientRecipient email address
contentMessage body
datedMessage timestamp

reply_to_ticket

Send an email reply to the customer on a ticket. The reply is sent via the mailbox that received the original email. For internal team notes, use create_annotation instead.
Property
Read-onlyNo

Parameters

ParameterTypeRequiredDescription
itemIdstringYesItem ID or key (e.g. HELP-42).
contentstringYesReply body text to send to the customer.

Returns

A confirmation message with the item key.