# Transaction Status Confirmation

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.&#x20;

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

<mark style="color:green;">`POST`</mark> `https://staging.mybankone.com/thirdpartyapiservice/apiservice/ CoreTransactions/TransactionStatusQuery`

#### Request Body

| Name                                                  | Type   | Description                                                                                                     |
| ----------------------------------------------------- | ------ | --------------------------------------------------------------------------------------------------------------- |
| RetrievalReference <mark style="color:red;">\*</mark> | String | Initial transaction unique reference                                                                            |
| TransactionDate<mark style="color:red;">\*</mark>     | String | Initial transaction date in YYYY-MM-DD format                                                                   |
| TransactionType<mark style="color:red;">\*</mark>     | String | Transaction type of the initiated transaction. Refer to the TransactionType section of each transaction request |
| Amount<mark style="color:red;">\*</mark>              | String | Transaction amount in kobo                                                                                      |
| Token<mark style="color:red;">\*</mark>               | String | Authentication Key for the request                                                                              |

{% tabs %}
{% tab title="200: OK " %}

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

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.mybankone.com/transactions/transactions-api/transaction-status-confirmation.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
