Transaction Status Confirmation

This confirms the status of a transaction for only Debit, Credit and LocalFundsTransfer.

To confirm status of a transaction you make a post request by passing RetrievalReference, TransactionDate, TransactionType, Amount, and Token in the request body to the transaction status query endpoint.

For this request, all payload in the request body are required for a successful response.

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

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

Request Body

Name
Type
Description

RetrievalReference *

String

Initial transaction unique reference

TransactionDate*

String

Initial transaction date in YYYY-MM-DD format

TransactionType*

String

Transaction type of the initiated transaction. Refer to the TransactionType section of each transaction request

Amount*

String

Transaction amount in kobo

Token*

String

Authentication Key for the request

{
     "IsSuccessful": true,
 "ResponseMessage": "Successful",
 "ResponseCode": "00",
 "Reference": null,
 "Status": “Successful"
}

Last updated