Query joint account information

POST /onboarding/getJointAccountOnboardingInfo

Use this endpoint to get the onboarding information of the joint account that customer submitted.

Parameters

Parameters
Type
Description
Required?

onboardingRequestId

string

unique onboarding request id returned from Choice system.

TRUE

Response

{
  "onboardingRequestId": "",//ID of request which customer submitted most recently
  "channel": "", //This is your channel ID
  "channelUserId": "", //The unique user identifier in your system
  "operatingMode": "", //1 (Singly) or 6 (Anyone or survivor)
  "status": "",
  "createTime": "", 
  "auditTime": "0", //0-Female; 1-Male
  "rejectReasonIds": "", //ISO 3166-2 country code
  "rejectReasonMsgs": "", //101-(Kenya) National ID; 102-(Kenya) Alien ID; 103-Passport
  "onboardingMediaInfos": [
        {
            "fileUrl": "",
            "mediaType": "",
            "contentType": "",
            "fileTypeId": "", //File type id,KYCFxxxxx
            "fileKey": "", //s3 file key
            "fileId": "",
        }
  ],
 "onboardingMediaInfos": [
        {
            "memberId": "", //ownerId
            "firstName": "", //First name of customer
            "middleName": "",//Middle name of customer
            "lastName": "", //Last Name of customer
            "fullName": "",
            "idType": "",
            "idNumber": "",
            "kraPin": "", //Kenya KRA PIN code or tax number from other countries
            "mobile": "",
            "email": "",
            "idFrontFileUrl": "",
            "idFrontFileType": "",
            "idFrontFile": "",
            "idBackFileUrl": "",
            "idBackFileType": "",
            "idBackFile": "",
            "kraPinFileUrl": "",
            "kraPinFileType": "", //File type, image/pdf
            "kraPinFile": "",
            "isPrimary": "", //Is primary owner,0:false,1:true
            "emailVerified": "", //0:unverify, 1:verified
            "mobileVerified": "", //0:unverify, 1:verified
        }
]

Last updated