Save Customer Identification

This endpoint is used to save customer identification type

Overview

This endpoint is used to save customer identification

Required Payload

NameData TypeDescriptionMandatory/Optional
CustomerIDStringCustomer's identification numberMandatory
IdentificationImageTypeIntPassport =0,
NationalIdentityCard = 1,
DriversLicense = 2,
Others = 3,
VotersCard = 4,
NIMC =5
IdentificationImageStringIdentification image in Base64, should not exceed 40kbMandatory
IdentificationNumberStringCorresponding identification numberMandatory

Expected Request

{ 
  "CustomerID": "string", 
  "IdentificationImageType": 0, 
  "IdentificationImage": "string", 
  "IdentificationNumber": "string" 
} 

Expected Response

If the request is successful, it returns a status code of 200 with a response body.

{   "IsSuccessful": true,"CustomerIDInString": null,"Message": "Update Successful",   "TransactionTrackingRef": null,"Page": null}

API Reference Save Customer Identification