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

# InboxViewInput

GraphQL input

Reference: https://docs.revvue.ai/api-reference/inbox/types/inputs/inbox-view-input

## Fields

- `fullOverwrite` — Overwrite all properties in the object.
- `id` — Unique id (UUID).
- `activeState` — Active state
- `tenantId` — Document tenant id.
- `displaySettings`
- `filters`
- `icon`
- `name`
- `parentId`
- `sorting`
- `order`

## Definition

```graphql
input InboxViewInput {
  fullOverwrite: Boolean
  id: UUID
  activeState: ActiveState
  tenantId: String
  displaySettings: InboxViewSettingsInput
  filters: [JSONString]
  icon: String
  name: String
  parentId: UUID
  sorting: [InboxViewSortingInput]
  order: Int
}
```