Page cover

Get Transaction Status

Endpoint

GET {{base_url}}/v1/accounts/transactions/<transaction_id>/status?currency=<currency_code>

Description

This endpoint is used to get a single organization's transaction status.

URL Parameters

transaction-id (string): The transaction ID of the transaction request you want to retrieve.

Query parameters

currency_code (string): The currency code of the accounts you want to retrieve, i.e. EUR or GBP. NB: This parameter is required when making use of this endpoint

{
    "status": true,
    "message": "Transaction status fetched successfully",
    "data": {
        "status": "Completed"
    },
    "code": 200
}

Response

On success, the API will return a JSON object containing the status of a single transaction.

Last updated