> ## Documentation Index
> Fetch the complete documentation index at: https://developer.embedly.ng/llms.txt
> Use this file to discover all available pages before exploring further.

# Get checkout wallet transactions

> Endpoint for getting all checkout wallets under an organization using the Organization Id

<ParamField path="walletId" type="string" required>
  The unique idenitifier of the checkout wallet. Exmaple:
  `3fa85f64-5717-4562-b3fc-2c963f66afa6`
</ParamField>

<ParamField query="organizationId" default="1" type="string">
  The unique idenitifier for your organization on Embedly. **Example:**
  `3fa85f64-5717-4562-b3fc-2c963f66afa6`
</ParamField>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "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.0,
      "walletHistories": [
        {
          "id": "eb1a7058-5ac2-4dd5-9be2-d5f5a7fa6b30",
          "checkoutRef": "CHK202510290916306114570",
          "expectedAmount": 20000.0,
          "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.0,
          "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
        }
      ]
    }
  }
  ```

  ```json 401 Unauthorized theme={null}
  {
    "code": "401",
    "success": false,
    "message": "x-api-key is missing in the header",
    "data": null
  }
  ```

  ```json 403 Forbidden theme={null}
  {
    "statusCode": 403,
    "message": "Access denied. The API key provided is for another organization. You can only access your organization's wallets.",
    "data": null
  }
  ```

  ```json 404 Forbidden theme={null}
  {
    "statusCode": 404,
    "message": "Wallet not found or does not belong to the organization mapped to the apikey",
    "data": null
  }
  ```
</ResponseExample>
