Skip to main content

get_tickets_by_email

Find ticket items by the customer’s email address. Returns tickets where the inbound sender matches the given email, ordered by newest first. Use get_ticket_conversation to view the full email thread for a specific ticket.
Property
Read-onlyYes

Parameters

ParameterTypeRequiredDefaultDescription
emailstringYesCustomer email address to search for.
limitintNo25Maximum number of tickets to return.

Returns

A list of ItemDto objects with key, name, status, container, board, cycle, and resource info.

get_tickets_by_mailbox

Find ticket items received by a specific support mailbox. Accepts either the mailbox email address (e.g. [email protected]) or the mailbox ID. Returns tickets ordered by newest first. Use get_ticket_conversation to view the full email thread for a specific ticket.
Property
Read-onlyYes

Parameters

ParameterTypeRequiredDefaultDescription
mailboxstringYesMailbox email address or mailbox ID.
limitintNo25Maximum number of tickets to return.

Returns

A list of ItemDto objects with key, name, status, container, board, cycle, and resource info.

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.