Reversals

This is used to reverse a successfully initiated transaction.

To reverse a successfully initiated transaction you make a post request by passing RetrievalReference, TransactionDate, TransactionType, Amount, Token in the request body to the reversal endpoint.

All the request body payload for this request are required for a successful response.

// Live URL
http://api.mybankone.com/thirdpartyapiservice/apiservice/
CoreTransactions/Reversal

POST https://staging.mybankone.com/thirdpartyapiservice/apiservice/ CoreTransactions/Reversal

Request Body

Name
Type
Description

RetrievalReference*

String

Initial transaction unique reference

TransactionDate*

String

Transaction date of the initiated transaction e.g 2019-08-25

TransactionType*

String

Transaction Type of the initiated transaction. Refer to the TransactionType section of each transaction request eg LOCALFUNDTRANSFER, INTERBANKTRANSFER etc.

Amount*

String

Initiated transaction amount in kobo

Token*

String

Authentication Key for the request

{
  "Status": 0,
 "StatusDescription": null,
 "ReferenceID": 0,
 "UniqueIdentifier": 
"020066214105071322500000000000000000000000",
 "IsSuccessFul": true,
 "ResponseMessage": "Successful",
 "ResponseCode": "00",
 "Reference": "teuyuwjw",
 "RequestStatus": true,
 "ResponseDescription": "Successful",
 "ResponseStatus": null
}

Last updated