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

# CustomUiTextInput

GraphQL input

Reference: https://docs.revvue.ai/api-reference/surveys/types/inputs/custom-ui-text-input

## Fields

- `completeSurveyHeader` — Custom complete survey header text.
- `completeSurveyBody` — Custom complete survey body text.
- `verifyIdBody` — Custom verify identity to play for reward text.
- `playRewardLoseBody` — Custom play for reward lose body text.
- `playRewardWinBody` — Custom play for reward win body text
- `consentMarketingBody` — Custom consent marketing body text.
- `consentMarketingLabel` — Custom consent marketing label text.
- `consentDataCollectionBody` — Custom consent data collection body text.

## Definition

```graphql
input CustomUiTextInput {
  completeSurveyHeader: String
  completeSurveyBody: String
  verifyIdBody: String
  playRewardLoseBody: String
  playRewardWinBody: String
  consentMarketingBody: String
  consentMarketingLabel: String
  consentDataCollectionBody: String
}
```