RocketKOR

Submit an Identity Verification Application

Submit an Identity Verification (IDV) application for a Business Account or a Customer Account. Each RocketKOR entity linked to the account will be verified as part of the IDV process:

  • Business Account  The Business Account and any Beneficiary Accounts will be verified.
  • Business Customer  The Customer Account and any Beneficiary Accounts will be verified.
  • Individual Customer  The Customer Account will be verified.

All entities must be successfully verified in order for the IDV application to be approved.

Endpoint

POST /v1/identity-verifications

Authorization Header

Authorization: Bearer <access_token>

Request Body

accountId  REQUIRED

string (UUID)

ID of the Business Account or Customer Account.

identityVerificationProfileId  REQUIRED

string

IDV profile used to process the IDV application.

Returns

The URI of the newly created IDV application is returned in the Location header.

SAMPLE REQUEST

				
					{
  "accountId": "2936cf3f-279f-4fee-a09f-f3f6c4468879",
  "identityVerificationProfileId": "kyb-profile-1"
}
				
			

SAMPLE RESPONSE

				
					{
  201 Identity verification application created successfully. Application resource URI is returned in the Location header.
}