Skip to main content
query UnderwritingInformationRequestOptions {
  underwritingInformationRequestOptions {
    description
    displayOrder
    fulfillmentTypes
    title
    type
  }
}
{
  "data": {
    "underwritingInformationRequestOptions": {
      "description": "example",
      "displayOrder": 0,
      "fulfillmentTypes": [
        "DOCUMENT"
      ],
      "title": "example",
      "type": "BANK_LETTER"
    }
  }
}
Query

Arguments

No arguments.

Return type

[UnderwritingInformationRequestOption!]!
description
String!
required
Detailed description of the information this option requests.
displayOrder
Int!
required
The display order for this option in UI lists.
fulfillmentTypes
[UnderwritingInformationRequestFulfillmentType!]!
required
The supported fulfillment types for this option (e.g. DOCUMENT, TEXT).
title
String!
required
Short title describing the information request option.
type
UnderwritingInformationRequestType!
required
The type of information request this option represents.
query UnderwritingInformationRequestOptions {
  underwritingInformationRequestOptions {
    description
    displayOrder
    fulfillmentTypes
    title
    type
  }
}
{
  "data": {
    "underwritingInformationRequestOptions": {
      "description": "example",
      "displayOrder": 0,
      "fulfillmentTypes": [
        "DOCUMENT"
      ],
      "title": "example",
      "type": "BANK_LETTER"
    }
  }
}