Release KYC Pending Transactions

This is the endpoint that is used to release pending KYC transactions due to mismatch in KYC data (initiated/verified data).

POST https://exchanger-api.fuspay.finance/api/v1/no-auth/Axis/ReleaseKycPendingOrder

Request Body

Name
Type
Description

verified_email

String

This is the user's verified email

verified_phone

String

This is the user's verified phone number

partner_order_id

String

This is the order id of the transaction from the partner

True means user's KYC is complete and initiated KYC corresponds with verified KYC

{
"release_order_status": "COMPLETED", //"PENDING"
"partner_order_id": ""
"KYC_status" : true/false
"Txn_status": "pending/completed" 
"Meta_data" : {"Message": "error mismatched email and phone or KYC awaiting approval"}
} 

Key
Type
Description
Value

release_order_status

String

This is the current state of a release order

completed, pending

partner_order_id

String

This is the order id of the transaction from the partner

kyc_status

Boolean

This is the current state of a customer's identity verification process.

true/false

txn_status

String

This refers to the current state of a financial transaction

pending/completed

meta_data

Object

This contains is information about the KYC process

Message: error mismatched email and phone or KYC awaiting approval

Last updated