Change OFFRAMP transaction status
Change the status of an Offramp transaction
Change the status of Offramp transaction
POST https://api.remitquickly.com/onramp/api/v2/whiteLabel/test/changeOfframpStatus
Request Body
Name
Type
Description
customerId*
String
Unique id received from /kyc/url
status*
String
Status to change and this must be among one of the accepted values
transactionId*
String
offramp transaction Id
{
"status": 1,
"code": 200,
"data": {
"changeStatus": true,
"message": "Status changed to 10 i.e ON_CHAIN_DEPOSIT_RECEIVED"
}
}{
"status": 0,
"code": 400,
"error": "Missing parameter -> transactionId, status."
}{
"status": 0,
"code": 400,
"error": "Unable to change status . Please try again after some time."
}{
"status": 1,
"code": 200,
"data": {
"changeStatus": true,
"message": "Status changed to 10 i.e ON_CHAIN_DEPOSIT_RECEIVED"
}
}status -> 0 is for unsuccessful request, 1 is for a successful one
changeStatus -> status has been changed successfully.
message -> status change message
Last updated