Skip to main content

Requests for Information (RFIs)

After submission, the status in the Onboard Corporate Customer response is IN_PROGRESS. The applicant needs to complete both the Applicant KYC (if applicable) and Upload documents steps to proceed further. Once done, Nium initiates verification and sends the response via a webhook.

The application might be approved at this stage; and if it isn't approved, the application goes through a manual review. Any changes in the status is again communicated via a webhook.

If the agent requires more information to approve the application, he raises an RFI. This will trigger a webhook (CARD_CLIENT_KYB_STATUS_WEBHOOK) with the status RFI_REQUESTED. Client has to perform the following steps:

Step 1: Fetch Corporate Customer RFI Details

Call the Fetch Corporate Customer RFI Details API with either caseID or clientID or customerHashId in the query parameter.

Response of Fetch Corporate Customer RFI details

The rfiTemplates ios an array of objects that contains the RFI templates that are requested for the business or stakeholder.

Use the rfiHashId to fetch a specific RFI. Please note, while rfiHashId will always be unique, two RFIs can share the same values for the following:

  • templateId
  • referenceId
  • status

For example. if a stakeholderAddress RFI is raised for two stakeholders, the RFIs will have the same templateId with different referenceId.

rfiTemplates object

ParameterTypeDescription
rfiHashIdstringUnique identifier for the individual RFI
referenceIDstringThis is the referenceId of the entity for which the RFI is raised. This field is available to applicants and stakeholders. When this value available, you need to pass the same referenceId in the Respond to RFI API. If you don't already have, use the Customer Details API to fetch the referenceId for each stakeholder and applicant.
remarksstringThis field returns any remarks entered by the compliance agent.
statusenumThe status of this particular template is either RFI_REQUESTED or RFI_RESPONDED. This field changes to RFI_RESPONDED when an RFI is responded to.
templateIdstringThe RFI template ID. This is not a unique value for the RFI. There is a one-to-one mapping for templateId and template.name. Note: There can be two RFIs with the same templateId and referenceId and status but with different rfiHashId.
templateobjectThis object contains information about the template.

template object

This object is within the rfiTemplates array of objects and contains information about the template.

ParameterTypeDescription
documentTypeenumThis is the type of the document expected from the customer: Valid values:
  • POA (Proof of Address)
  • POI (Proof of Identity)
  • LOA (Letter of Authorization)
  • POWER_OF_ATTORNEY
  • document (for any other kind of document)
namestringThe name of the template. For example: stakeholderAddress and stakeholderIdentity.
requiredFieldsarray of objectsThis object contains metadata and can be used to directly display the required fields to the customer. Note: This object can be ignored if you are displaying the required fields yourself.
rfiTypeenumValid values are:
  • corporate for businessDetails related or riskAssessmentInfo related RFIs
  • applicant for applicant related RFIs
  • stakeholder for individual and corporate related RFIs
typeenumThe determines the type of template. Valid values are:
  • data
  • document

requiredFields array

This array of objects is within the rfiTemplates.template object and contains metadata as well as can be used to directly display the required fields to the customer.

NOTE: This object can be ignored if you are constructing the set of required fields yourself.

ParameterTypeDescription
fieldLabelstringThis text can be directly displayed on the form to the customer as a label.
fieldValuestringThis indicates into which onboarding API field the value is sent. Valid values are:
  • documentType
  • documentNumber
  • documentExpiryDate
  • document
  • intendedUseOfAccount
  • businessName
  • transactionCountries
Note:
  • The value document refers to the document object that contains the fileName, fileType, and document base-64 fields.
  • documentExpiryDate may not be available for all documentType values. This can be treated as optional and can be sent for DRIVER_LICENSE or PASSPORT.
typeenumUse this to configure the UI element. Valid values are:
  • data
  • document

Step 2: Respond to RFI Details

Pick the templates where status = RFI_REQUESTED and call the Respond to RFI Details API.

ParameterTypeDescription
regionenumValid values are:
  • AU
  • EU
  • HK
  • SG
  • UK
  • US
<li>clientId</li> <li>caseId</li> <li>customerHashId</li>stringAny one of these three values is required.
rfiResponseRequestarray of objectsThis contains an array of objects each of which is a response to an RFI template present in Fetch RFI Details API.

rfiResponseRequest array

This contains an array of objects each of which is a response to an RFI template present in Fetch RFI Details API.

ParameterTypeDescription
rfiHashIdstringUnique identifier for the individual RFI reecived in the Fetch RFI Details API response.
rfiTemplateIdstringThe ID corresponding to each template name. This field is in the process of being depreciated. This is optional for clients integrating using rfiHashId. If you hvae any questions about moving away from this field, please reach out to your Nium account manager or Nium support.
businessDetailsobjectThis object is similar to the businessDetails object in the Onboard Corporate Customer API but requires only the required fields of the RFI. Note: API reference section for Respond to RFI Details mentions businessInfo instead of businessDetails. We accept both values to ensure backward compatibility
riskAssessmentInfoobjectThis object is similar to the riskAssessmentInfo object in the Onboard Corporate Customer API but contains only the required fields.

The fields and structure of the Respond to RFI API are the same as that of the Onboard Corporate Customer API

You need to send only the required fields for the RFI and not the entire onboard request again. For examples of how to send each RFI, see RFI examples.

You can choose to add the documentType field within the documentDetails object. Use the following values for documentType

  • BUSINESS_REGISTRATION_DOCUMENT
  • INVOICE
  • LICENSE
  • OTHER
  • PARTNERSHIP_DEED
  • PROOF_OF_ADDRESS
  • PROOF_OF_IDENTITY
  • SELFIE
  • TRUST_DEED
  • LOA
  • POWER_OF_ATTORNEY

The documentDetails element--not an array--is an object for the Fetch Corporate Constants API of all applicant, corporate, and stakeholder rfiType values. Its behavior is different from the Onboard Corporate API because different RFIs will be raised for each document required. However, if you want to send multiple files for the same document--for example, the front and back of a passport--you can make use of the document object which is an array of objects with fields fileName, fileType, and document.

To enable backward compatibility this API supports both businessInfo object and businessDetails object.

Responding to multiple RFI templates

You can respond to multiple RFI templates in the same request. Make sure you have different objects for each rfiHashId.

Once all the RFI templates are responded, the status of the application changes from RFI_REQUESTED to RFI_RESPONDED and you will receive a webhook with complianceStatus=RFI_RESPONDED

After the application, the complianceStatus can again become RFI_REQUESTED or one of the terminal states becomes COMPLETED or REJECTED.

Though rare, compliance agent can raise an RFI even after the complianceStatus is COMPLETED. Make sure to provision such cases.

Troubleshooting errors

ErrorDescription
No matching template found for referenceId with the given rfiHashId or No matching template found for the given rfiHashIdThe templateId is optional. If provided, it must match the templateId returned when using the rfiHashId to fetch RFI details.
rfiHashId is required to resolve multiple open templates with the same templateId XXXXXIf multiple RFIs have been raised with the same templateId, you must provide the rfiHashId. If you haven't integrated rfiHashId, contact Nium support.
Either rfiHashId or rfiTemplateId is requiredYou must provide either the rfiHashId or the templateId.
RFI template ID is invalidThere is no RFI raised for the customer associated with this template.
Invalid UniqueId(For clients who have not integrated rfiHashId) Either the referenceId does not match the templateId, or the required referenceId is missing.
RFI is already respondedAn agent has already responded to this RFI by collecting information from other sources. To prevent this, use the [Fetch RFI Details](fetch RFI details) request when the customer is ready to respond, and only display templates with the status RFI_REQUESTED.
Reference ID is required to process the responded RFIThe referenceId field is required for all applicant-related and stakeholder-related RFIs.