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

# UnderwritingInformationRequest

> A request for additional information during the underwriting process

`OBJECT`

A request for additional information during the underwriting process

## Fields

<ResponseField name="createdBy" type="Actor">
  The actor (user or app) who created this information request

  <Expandable title="child attributes">
    <ResponseField name="name" type="String!" required />

    <ResponseField name="type" type="ActorType!" required>
      See [ActorType](/underwriting/reference/graphql/types/actor-type)
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="fulfilledBy" type="Actor">
  The actor (user or app) who fulfilled this information request

  <Expandable title="child attributes">
    <ResponseField name="name" type="String!" required />

    <ResponseField name="type" type="ActorType!" required>
      See [ActorType](/underwriting/reference/graphql/types/actor-type)
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="applicationId" type="UUID!" required>
  The unique identifier for the application this information request belongs to.
</ResponseField>

<ResponseField name="createdDateTime" type="DateTime!" required>
  The date and time in UTC when this information request was created.
</ResponseField>

<ResponseField name="description" type="String!" required>
  Detailed description of the information being requested.
</ResponseField>

<ResponseField name="fulfilledDateTime" type="DateTime">
  The date and time in UTC when this information request was fulfilled.
</ResponseField>

<ResponseField name="fulfillmentAttachmentIds" type="[UUID!]!" required>
  Attachment IDs if the response includes files.
</ResponseField>

<ResponseField name="fulfillmentResponse" type="String">
  Free text response when the request is fulfilled.
</ResponseField>

<ResponseField name="fulfillmentTypes" type="[UnderwritingInformationRequestFulfillmentType!]!" required>
  The supported fulfillment types for this request (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="id" type="UUID!" required>
  The unique identifier for the information request.
</ResponseField>

<ResponseField name="status" type="UnderwritingInformationRequestStatus!" required>
  The current status of the information request.

  <Expandable title="Possible enum values">
    <ResponseField name="FULFILLED" type="enum">
      The information request has been fulfilled with a response
    </ResponseField>

    <ResponseField name="REQUESTED" type="enum">
      The information request has been created and is awaiting fulfillment
    </ResponseField>
  </Expandable>
</ResponseField>

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

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

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

<ResponseField name="updatedDateTime" type="DateTime!" required>
  The date and time in UTC when this information request was last updated.
</ResponseField>
