Transactions
Show Transaction
GET
/
transactions
/
{reference}
Authorization
Header
curl --request GET \
--url https://api.sandbox.saalal.com/v1/transactions/{reference} \
--header 'Authorization: <authorization>'
{
"message": "OK",
"statusCode": 200,
"transaction": {
"amount": 2000,
"card_reference": "9c54515e-7890-44f9-8cc2-a85b80322b98",
"created_at": "2023-06-22T10:40:17.000000Z",
"kind": "recharge",
"merchant": "Any",
"reference": "b60f55b1-922a-406a-8417-g54atb0849ttb22c",
"slug": "792c6cf2-f5cf-46c8-bf8c-699a9028010e",
"status": "pending"
}
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Accept
string
Response
200 - application/json
message
string
statusCode
integer
transaction
object
curl --request GET \
--url https://api.sandbox.saalal.com/v1/transactions/{reference} \
--header 'Authorization: <authorization>'
{
"message": "OK",
"statusCode": 200,
"transaction": {
"amount": 2000,
"card_reference": "9c54515e-7890-44f9-8cc2-a85b80322b98",
"created_at": "2023-06-22T10:40:17.000000Z",
"kind": "recharge",
"merchant": "Any",
"reference": "b60f55b1-922a-406a-8417-g54atb0849ttb22c",
"slug": "792c6cf2-f5cf-46c8-bf8c-699a9028010e",
"status": "pending"
}
}