GET
/
api
/
v1
/
transaction
/
{transactionID}
curl --request GET \
  --url https://api-m.dexchange.sn/api/v1/transaction/{transactionID} \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "transaction": {
    "ServiceName": "<string>",
    "ServiceCode": "<string>",
    "Amount": 123,
    "Number": "<string>",
    "Status": "<string>",
    "Initiated_at": "2023-11-07T05:31:56Z",
    "Completed_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

transactionID
string
required

ID of the transaction to fetch

Response

200
application/json
Transaction details response
message
string
required
transaction
object
required