Change OFFRAMP transaction status

Change the status of an Offramp transaction

This endpoint is only for sandbox environment. The following outlines the acceptable status values that can be included within the request body: [-2, -1, 2, 4, 5, 6, 10, 11, 12, 13, 14] where,

-2, -1 : FAILED 2, 10, 11: ON_CHAIN_DEPOSIT_RECEIVED 4, 12: TRADE_COMPLETED 5, 13: FIAT_TRANSFER_INITIATED 6, 14: FIAT_TRANSFER_COMPLETED

Change the status of Offramp transaction

POST https://integration.coinmena.com/onramp/api/v2/whiteLabel/test/changeOfframpStatus

Request Body

NameTypeDescription

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": 1,
    "code": 200,
    "data": {
        "changeStatus": true,
        "message": "Status changed to 10 i.e ON_CHAIN_DEPOSIT_RECEIVED"
    }
}

Last updated