Skip to main content
Fulfill one or more underwriting information requests.

Arguments

input
required
mutation fulfillUnderwritingInformationRequests($input: FulfillUnderwritingInformationRequestsInput!) {
  fulfillUnderwritingInformationRequests(input: $input) {
    errors {
      ... on BadRequestError {
        advice
        code
        message
      }
      ... on ForbiddenError {
        advice
        code
        message
      }
      ... on InvalidActorError {
        advice
        code
        message
      }
      ... on InvalidOrganizationError {
        advice
        code
        message
      }
      ... on NotFoundError {
        advice
        code
        message
        resourceName
        resourceId
      }
      ... on ServerError {
        advice
        code
        message
      }
    }
    underwritingInformationRequests {
      createdBy {
        name
        type
      }
      fulfilledBy {
        name
        type
      }
      applicationId
      createdDateTime
      description
      fulfilledDateTime
      fulfillmentAttachmentId
      fulfillmentResponse
      id
      status
      title
    }
  }
}

Response

Returns a FulfillUnderwritingInformationRequestsPayload
{
  "data": {
    "fulfillUnderwritingInformationRequests": {
      "errors": [
        BadRequestError
      ],
      "underwritingInformationRequests": [
        UnderwritingInformationRequest
      ]
    }
  }
}
Run in Playground