> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# replySupportTicket

GraphQL MUTATION

Reference: https://docs.revvue.ai/api-reference/inbox/mutations/reply-support-ticket

## GraphQL Schema

```graphql
mutation ExampleMutation($content: String!, $integrationProfileId: UUID!, $objectId: String!, $ticketId: UUID, $conversationId: String, $attachments: [InboxEmailAttachmentInput!], $ccAddress: [String!], $bccAddress: [String!], $toAddress: [String!], $emailOperation: EmailSendOperation, $references: [String!], $inReplyTo: [String!], $subject: String, $locationId: UUID, $actorType: ActorType!, $draftId: UUID, $aiDraft: AiDraftRefInput) {
  replySupportTicket(content: $content, integrationProfileId: $integrationProfileId, objectId: $objectId, ticketId: $ticketId, conversationId: $conversationId, attachments: $attachments, ccAddress: $ccAddress, bccAddress: $bccAddress, toAddress: $toAddress, emailOperation: $emailOperation, references: $references, inReplyTo: $inReplyTo, subject: $subject, locationId: $locationId, actorType: $actorType, draftId: $draftId, aiDraft: $aiDraft) {
    success
    message
    sentEmail {
      typename__
      activityType
      attachments
      cc
      bcc
      content
      contentPreview
      created
      id
      inReplyTo
    }
  }
}
```

## Variables

```json
{
  "content": "example",
  "integrationProfileId": "example",
  "objectId": "example",
  "ticketId": null,
  "conversationId": null,
  "attachments": null,
  "ccAddress": null,
  "bccAddress": null,
  "toAddress": null,
  "emailOperation": null,
  "references": null,
  "inReplyTo": null,
  "subject": null,
  "locationId": null,
  "actorType": "USER",
  "draftId": null,
  "aiDraft": null
}
```