Skip to main content
Using TypeScript? Check out our GraphQL SDK for a fully typed client.
You can reply to an inbound email with the replyToEmail API. This operation requires the following permissions:
  • email:create
  • email:read
Mutation
mutation replyToEmail($input: ReplyToEmailInput!) {
  replyToEmail(input: $input) {
    email {
      id
    }
    error {
      message
      type
      code
    }
  }
}
Variables
{
  "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."
  }
}