Reply
An email message from an agent to a contact.
type Reply implements Delayable, Emailable, Message, Node {
attachments(
after: String
before: String
first: Int
last: Int
): AttachmentConnection
author: Author
bcc(
after: String
before: String
first: Int
last: Int
): RecipientConnection
body: String
bodyPlainText: String
cannedReply: CannedReply
cc(
after: String
before: String
first: Int
last: Int
): RecipientConnection
channel: Channel!
createdAt: DateTime!
deliverBy: DateTime
editedAt: DateTime
fromMerge: Boolean
fromMove: Boolean
id: ID!
isNote: Boolean!
rule: Rule
sourceConversation: Conversation
summary: SummaryMessage!
to(
after: String
before: String
first: Int
last: Int
): RecipientConnection!
updatedAt: DateTime!
}
Fields
Reply.attachments ● AttachmentConnection object common
The files attached to the message, if any.
Reply.attachments.after●Stringscalar commonReturns the elements in the list that come after the specified cursor.
Reply.attachments.before ● String scalar common
Returns the elements in the list that come before the specified cursor.
Reply.attachments.first ● Int scalar common
Returns the first n elements from the list.
Reply.attachments.last ● Int scalar common
Returns the last n elements from the list.
Reply.author ● Author union common
The actor that authored the body.
Reply.bcc ● RecipientConnection object common
The "Bcc" recipients of the email.
Reply.bcc.after●Stringscalar commonReturns the elements in the list that come after the specified cursor.
Reply.bcc.before ● String scalar common
Returns the elements in the list that come before the specified cursor.
Reply.bcc.first ● Int scalar common
Returns the first n elements from the list.
Reply.bcc.last ● Int scalar common
Returns the last n elements from the list.
Reply.body ● String scalar common
The body of the message in HTML.
Reply.bodyPlainText ● String scalar common
The body of the message in plain text.
Reply.cannedReply ● CannedReply object common
The canned reply used for this message.
Reply.cc ● RecipientConnection object common
The "Cc" recipients of the email.
Reply.cc.after●Stringscalar commonReturns the elements in the list that come after the specified cursor.
Reply.cc.before ● String scalar common
Returns the elements in the list that come before the specified cursor.
Reply.cc.first ● Int scalar common
Returns the first n elements from the list.
Reply.cc.last ● Int scalar common
Returns the last n elements from the list.
Reply.channel ● Channel! non-null interface common
The channel this message belongs to
Reply.createdAt ● DateTime! non-null scalar common
The date and time that the object was created.
Reply.deliverBy ● DateTime scalar common
The date and time that the message was sent. Used to allow for undoing send.
Reply.editedAt ● DateTime scalar common
The date and time that the object was last updated.
Reply.fromMerge ● Boolean scalar common
True if the message comes from a merged conversation; false otherwise.
Reply.fromMove ● Boolean scalar common
True if the message was moved from another conversation; false otherwise.
Reply.id ● ID! non-null scalar common
Reply.isNote ● Boolean! non-null scalar common
True if the message is a note; false otherwise.
Reply.rule ● Rule object common
The rule that caused this message to be created.
Reply.sourceConversation ● Conversation interface common
The conversation the message was moved from.
Reply.summary ● SummaryMessage! non-null object common
The summary of the message.
Reply.to ● RecipientConnection! non-null object common
The "To" recipients of the email.
Reply.to.after●Stringscalar commonReturns the elements in the list that come after the specified cursor.
Reply.to.before ● String scalar common
Returns the elements in the list that come before the specified cursor.
Reply.to.first ● Int scalar common
Returns the first n elements from the list.
Reply.to.last ● Int scalar common
Returns the last n elements from the list.
Reply.updatedAt ● DateTime! non-null scalar common
The date and time that the object was last updated.
Interfaces
Delayable interface common
A message with delayed deliveries.
Emailable interface common
A message that is sent via email.
Message interface common
An individual message, for example an incoming email, an email reply, or a note.
Node interface common
An object with an ID.
Member of
ReplyConnection object ● ReplyEdge object
Implemented by
ChangeTypeUnion union