> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tesouro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# underwritingInformationRequestOptions

> Retrieves all active information request options for underwriting.

`Query`

## Arguments

No arguments.

## Return type

`[UnderwritingInformationRequestOption!]!`

<ResponseField name="description" type="String!" required>
  Detailed description of the information this option requests.
</ResponseField>

<ResponseField name="displayOrder" type="Int!" required>
  The display order for this option in UI lists.
</ResponseField>

<ResponseField name="fulfillmentTypes" type="[UnderwritingInformationRequestFulfillmentType!]!" required>
  The supported fulfillment types for this option (e.g. DOCUMENT, TEXT).

  <Expandable title="Possible enum values">
    <ResponseField name="DOCUMENT" type="enum">
      A document upload fulfillment
    </ResponseField>

    <ResponseField name="TEXT" type="enum">
      A text response fulfillment
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="title" type="String!" required>
  Short title describing the information request option.
</ResponseField>

<ResponseField name="type" type="UnderwritingInformationRequestType!" required>
  The type of information request this option represents.

  <Expandable title="Possible enum values">
    <ResponseField name="ARTICLES_OF_INCORPORATION" type="enum">
      Articles of incorporation for the business entity
    </ResponseField>

    <ResponseField name="BANK_LETTER" type="enum" deprecated>
      A bank letter confirming account details and business relationship

      **Deprecated:** Use BANK\_LETTER\_VOIDED\_CHECK instead.
    </ResponseField>

    <ResponseField name="BANK_LETTER_VOIDED_CHECK" type="enum">
      A bank letter or voided check to verify bank account information
    </ResponseField>

    <ResponseField name="BANK_STATEMENTS" type="enum">
      Recent bank statements
    </ResponseField>

    <ResponseField name="BUSINESS_LICENSE" type="enum">
      A copy of the business license
    </ResponseField>

    ...and 11 more values. See [UnderwritingInformationRequestType](/underwriting/reference/graphql/types/underwriting-information-request-type) for the full list.
  </Expandable>
</ResponseField>

<RequestExample>
  ```graphql Operation lines expandable theme={null}
  query UnderwritingInformationRequestOptions {
    underwritingInformationRequestOptions {
      description
      displayOrder
      fulfillmentTypes
      title
      type
    }
  }
  ```

  ```bash cURL lines expandable theme={null}
  curl --request POST \
    --url https://api.sandbox.com/graphql \
    --header 'Content-Type: application/json' \
    --header 'Authorization: Bearer <YOUR_ACCESS_TOKEN>' \
    --data '{
    "query": "query UnderwritingInformationRequestOptions {\n  underwritingInformationRequestOptions {\n    description\n    displayOrder\n    fulfillmentTypes\n    title\n    type\n  }\n}"
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json Response lines expandable theme={null}
  {
    "data": {
      "underwritingInformationRequestOptions": {
        "description": "example",
        "displayOrder": 0,
        "fulfillmentTypes": [
          "DOCUMENT"
        ],
        "title": "example",
        "type": "ARTICLES_OF_INCORPORATION"
      }
    }
  }
  ```
</ResponseExample>
