v1

latestOpenAPI 3.1.02026-08-04490133.8 KB

Get A Transaction

get/transactions/{transactionId}

Path parameters

transactionIdstring required

transactionId from Get Transactions

Response

200

codeinteger
successboolean

Example response

{
  "code": 200,
  "data": {
    "transactions": [
      {
        "id": 792,
        "transactionId": "BE31661876379861",
        "type": "exchange",
        "currency": "UGX",
        "amount": "100",
        "balanceBefore": "398.78",
        "balanceAfter": "398.78",
        "destinationCurrency": "KES",
        "destinationAmount": "3.1007201981367",
        "accountId": 3,
        "meta": {
          "source": {
            "amount": 100,
            "balance": {
              "after": "398.78",
              "before": "398.78"
            },
            "currency": "UGX"
          },
          "destination": {
            "amount": 3.1,
            "balance": {
              "after": "1783.82",
              "before": "1783.82"
            },
            "currency": "KES"
          }
        },
        "status": "successful",
        "createdAt": "2022-08-30T16:19:39.864Z",
        "updatedAt": "2022-08-30T16:19:39.864Z"
      }
    ]
  },
  "success": true
}