Save Passport

This endpoint is used to save passport and signature.

Overview

This endpoint is used to save passport and signature.

Required Payload

NameData TypeDescriptionMandatory/Optional
CustomerIDStringCustomer's identification numberMandatory
PassportStringPassport in Bytes should not exceed 40kbMandatory
SignatureStringCustomer signature in base64, should not exceed 40kbMandatory

Expected Request

{ 
  "CustomerID": "string", 
  "Passport": "string", 
  "Signature": "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 Passport