replyToEmail API.
For TypeScript, the GraphQL SDK gives you a fully typed client for these operations.
email:createemail:read
Mutation
Variables
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Reply to a specific inbound email with the replyToEmail mutation.
replyToEmail API.
email:createemail:readmutation replyToEmail($input: ReplyToEmailInput!) {
replyToEmail(input: $input) {
email {
id
}
error {
message
type
code
}
}
}
{
"input": {
"customerId": "c_01GTC6ZHCMAGR06FMPN9VY5J95",
"inReplyToEmailId": "em_01GM2X8K7D3RZ7ZFGHZ2AYG3SA",
"textContent": "The plain text version of your reply goes here.",
"markdownContent": "The markdown **version** of your _reply_ goes here."
}
}
Was this page helpful?
