Skip to main content
GET
/
api
/
v1
/
checkout-wallet
/
{walletId}
/
transactions
Get checkout wallet transactions
curl --request GET \
  --url https://checkout-staging.embedly.ng/api/v1/checkout-wallet/{walletId}/transactions \
  --header 'x-api-key: <api-key>'
{
    "statusCode": 200,
    "message": "success",
    "data": {
        "id": "4e5e4451-654f-4bdd-9636-4f68ea52fa1e",
        "walletNumber": "2222412513",
        "organizationId": "02600494-1a3c-11f0-a818-6045bd97b81d",
        "walletName": "Org Test",
        "status": "Used",
        "createdAt": "2025-10-29T09:16:30.606152Z",
        "expiresAt": "2025-10-29T09:46:30.606152Z",
        "usedAt": "2025-10-29T09:16:41.769188Z",
        "expiredAt": null,
        "reactivatedAt": null,
        "expectedAmount": 20000.00,
        "walletHistories": [
            {
                "id": "eb1a7058-5ac2-4dd5-9be2-d5f5a7fa6b30",
                "checkoutRef": "CHK202510290916306114570",
                "expectedAmount": 20000.00,
                "generatedAt": "2025-10-29T09:16:30.611608Z",
                "usedAt": "2025-10-29T09:16:41.798649Z",
                "status": "Used",
                "transactionId": "b2381adf-23f1-43d3-bffc-be9f24637220"
            }
        ],
        "transactions": [
            {
                "id": "b2381adf-23f1-43d3-bffc-be9f24637220",
                "amount": 20000.00,
                "senderAccountNumber": "3333002345",
                "senderName": "Nkemakolam Ekeh",
                "recipientAccountNumber": "2222412513",
                "recipientName": "Org Test",
                "organizationSettlementAccount": "9710001442",
                "status": "Completed",
                "reference": "07f0a353-bd08-4afc-abfd-c8ba5320947c",
                "createdAt": "2025-10-29T09:16:41.075592Z",
                "completedAt": "2025-10-29T09:16:41.400539Z",
                "sessionId": "000001100913103301927365890002",
                "reversalId": null,
                "reversalAttemptedAt": null
            }
        ]
    }
}
walletId
string
required
The unique idenitifier of the checkout wallet. Exmaple: 3fa85f64-5717-4562-b3fc-2c963f66afa6
organizationId
string
default:"1"
The unique idenitifier for your organization on Embedly. Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6
{
    "statusCode": 200,
    "message": "success",
    "data": {
        "id": "4e5e4451-654f-4bdd-9636-4f68ea52fa1e",
        "walletNumber": "2222412513",
        "organizationId": "02600494-1a3c-11f0-a818-6045bd97b81d",
        "walletName": "Org Test",
        "status": "Used",
        "createdAt": "2025-10-29T09:16:30.606152Z",
        "expiresAt": "2025-10-29T09:46:30.606152Z",
        "usedAt": "2025-10-29T09:16:41.769188Z",
        "expiredAt": null,
        "reactivatedAt": null,
        "expectedAmount": 20000.00,
        "walletHistories": [
            {
                "id": "eb1a7058-5ac2-4dd5-9be2-d5f5a7fa6b30",
                "checkoutRef": "CHK202510290916306114570",
                "expectedAmount": 20000.00,
                "generatedAt": "2025-10-29T09:16:30.611608Z",
                "usedAt": "2025-10-29T09:16:41.798649Z",
                "status": "Used",
                "transactionId": "b2381adf-23f1-43d3-bffc-be9f24637220"
            }
        ],
        "transactions": [
            {
                "id": "b2381adf-23f1-43d3-bffc-be9f24637220",
                "amount": 20000.00,
                "senderAccountNumber": "3333002345",
                "senderName": "Nkemakolam Ekeh",
                "recipientAccountNumber": "2222412513",
                "recipientName": "Org Test",
                "organizationSettlementAccount": "9710001442",
                "status": "Completed",
                "reference": "07f0a353-bd08-4afc-abfd-c8ba5320947c",
                "createdAt": "2025-10-29T09:16:41.075592Z",
                "completedAt": "2025-10-29T09:16:41.400539Z",
                "sessionId": "000001100913103301927365890002",
                "reversalId": null,
                "reversalAttemptedAt": null
            }
        ]
    }
}