Retrieve wallet by ID
Fetches the details of a specific wallet using its unique identifier, {id}. This endpoint returns information such as the wallet's name, balance, currency, and associated team, providing a comprehensi
description: "Fetches the details of a specific wallet using its unique identifier, {id}. This endpoint returns information such as the wallet's name, balance, currency, and associated team, providing a comprehensive view of the wallet's current state."
Retrieve wallet by ID
Fetches the details of a specific wallet using its unique identifier, {id}. This endpoint returns information such as the wallet's name, balance, currency, and associated team, providing a comprehensive view of the wallet's current state.
For accessing the API a valid JWT must be passed in all queries in the 'Authorization' header. The following syntax must be used in the 'Authorization' header. (Bearer xxx.yyy.zzz)
Unique identifier for the wallet.
The wallet object for requested id.
There was a problem with input.
Login failed or token not valid.
Access denied due to insufficient permissions.
The wallet for specified id does not exist.
An unexpected error response.
GET /v2/wallets/{id} HTTP/1.1
Host: billing.<env>.citrusad.com
Authorization: YOUR_API_KEY
Accept: */*
{
"wallet": {
"archived": false,
"availableBalance": "15000.00",
"cappedAvailableBalance": "500.00",
"creditLimit": "50000.00",
"currencyCode": "USD",
"currentBalance": "20000.00",
"dailyBudget": "1000.00",
"externalId": "ext_789GHI",
"id": "wallet_12345ABC",
"name": "MainCompanyWallet",
"namespaceId": "namespace_xyz987",
"teamId": "team_456DEF"
}
}
