Each request is fulfilled by referencing its unique request ID
Requests may be fulfilled individually or in batches
Partial fulfillment is supported when multiple requests are outstanding
Once information requests are fulfilled, underwriters may continue or complete their review based on the information received.
ScenarioBen receives notification that an information request has been created for his
application. He uploads the requested bank statements for his keyboard
business and uses the fulfill mutation to mark the request as complete.
Fulfilling an information request changes its status to FULFILLED but does not
automatically change the application status. The application remains in
Pending until an underwriter reviews the provided information and makes a
decision.
Copy
Ask AI
mutation FulfillUnderwritingInformationRequests( $input: FulfillUnderwritingInformationRequestsInput!) { fulfillUnderwritingInformationRequests(input: $input) { underwritingInformationRequests { id status fulfilledDateTime fulfillmentResponse } errors { ... on BadRequestError { message } } }}