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

# FailedReplyReview

GraphQL object

Reference: https://docs.revvue.ai/api-reference/reviews/types/objects/failed-reply-review

## Fields

- `id` — Review id.
- `reason` — Human-readable reason. Free text and not stable — branch on `code`, not on this.
- `code` — Stable machine-readable failure code.
- `retryable` — True when re-sending the identical request could succeed later.

## Definition

```graphql
type FailedReplyReview {
  id: UUID
  reason: String
  code: ReplyFailureCode
  retryable: Boolean
}
```