v1

latestOpenAPI 3.1.0UNLICENSED2026-07-2613101.1 MB
Onboarding

List information requests for an application

Returns all information requests for a given onboarding application.

get/applications/{applicationId}/information-requests

Path parameters

applicationIdstring uuid required

The ID of the application to work with.

Example:e9293471-5eb3-4dbc-916c-dbaf9e2deefd

Response

OK

idstring uuid required

Unique identifier for the information request.

applicationIdstring uuid required

The onboarding application this request belongs to.

additionalInformationstring nullable required

Free text context about why the information is needed.

createdAtstring date-time required

The date the Resource was initially created. ISO 8601 format without milliseconds.

Example response

[
  {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "applicationId": "97ab27fa-30e2-43e3-92a3-160e80f4c0d5",
    "requiredInformation": [
      {
        "expectedResponseType": "text",
        "code": "PROOF_OF_ADDRESS"
      }
    ],
    "associatedPeople": [
      {
        "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
        "requiredInformation": [
          {
            "expectedResponseType": "text",
            "code": "PROOF_OF_ADDRESS"
          }
        ]
      }
    ],
    "additionalInformation": "string",
    "createdAt": "2019-08-24T14:15:22Z"
  }
]