> 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.

# supportTicketConversation

GraphQL QUERY

Reference: https://docs.revvue.ai/api-reference/inbox/queries/support-ticket-conversation

## GraphQL Schema

```graphql
query ExampleQuery($supportTicketId: UUID!, $includeAttachments: Boolean!, $includeAttachmentContent: Boolean!, $includeInlineContent: Boolean!, $maxInlineSize: Int, $conversationId: String, $integrationProfileId: UUID, $itemTypes: [ConversationItemType!], $bypassCache: Boolean!) {
  supportTicketConversation(supportTicketId: $supportTicketId, includeAttachments: $includeAttachments, includeAttachmentContent: $includeAttachmentContent, includeInlineContent: $includeInlineContent, maxInlineSize: $maxInlineSize, conversationId: $conversationId, integrationProfileId: $integrationProfileId, itemTypes: $itemTypes, bypassCache: $bypassCache) {
    conversationTimeline
    count
  }
}
```

## Variables

```json
{
  "supportTicketId": "example",
  "includeAttachments": true,
  "includeAttachmentContent": true,
  "includeInlineContent": true,
  "maxInlineSize": null,
  "conversationId": null,
  "integrationProfileId": null,
  "itemTypes": null,
  "bypassCache": false
}
```