Transaction details
Wallets
Get Wallet Transaction by ID
Retrieve full details of a single wallet transaction by its ID.
GET
Transaction details
Overview
GET /wallet/transactions/{id} returns full details of one wallet transaction. Use this when you have a transaction ID (from a webhook, list response, or your own logs) and want to inspect it.
For card transactions, use GET /cards/{id}/transactions/{transactionId} — that’s a separate, card-specific endpoint.
When to use it
- Look up a single transaction during support.
- Refresh a transaction’s status after a webhook.
Prerequisites
- The transaction must belong to one of your wallets.
Request
Headers
| Name | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <access_token> |
Path parameters
| Name | Type | Description |
|---|---|---|
id | string | Wallet transaction ID (UUID). |
Response
200 — Success
GET /wallet/transactions/wallet/{walletId}.
Error responses
| Status | Trigger |
|---|---|
404 | Transaction does not exist or belongs to another company. |
Code examples
cURL
Related
GET /wallet/transactions/wallet/{walletId}— list transactions for one wallet.GET /wallet/transactions— global list with filters.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.