v1
latestOpenAPI 3.0.02026-07-2466275257.1 KBList all wallets
This endpoint retrieves a list of wallets based on specified filters and parameters, including team ID, wallet name, wallet ID, external ID, and more. Supports pagination and sorting to manage large sets of data effectively.
Query parameters
Use this token to paginate through the list of wallets. Pass it in subsequent requests to continue from where the previous call left off.
Define the number of wallets to return per page. Defaults to 20 if not specified.
Filter the list to include only wallets that belong to the specified team.
Filters results to show only archived wallets when set to true.
Filters wallets by the specified wallet name.
Defines the key for sorting wallets, enabling you to tailor wallet organization to your needs. You can sort by keys such as name and available balance, and set the order to either ascending (ASC) or descending (DESC). Specify both the key and order to achieve precise sorting results.
Specifies the order in which the wallets are sorted. Choose from ascending (SORT_OPTION_ORDER_ASC) or descending (SORT_OPTION_ORDER_DESC) order.
Filter wallets using specified wallet IDs. You can include up to 50 wallet IDs in your request, separated by commas.
Filters wallets using the specified external ID. This field allows the storage of custom identifiers for tracking purposes, such as Placement IO numbers, purchase order numbers, or Salesforce numbers. It is available for partners to associate external identifiers with the wallet. Ensure the external ID is less than 255 characters, as no additional validation is applied.
The team ID used to verify access. Recommended for all requests.
Response
A list of wallets and a pagination token.
Example response
{
"wallets": [
{
"id": "wallet_12345ABC",
"namespaceId": "namespace_xyz987",
"teamId": "team_456DEF",
"name": "MainCompanyWallet",
"externalId": "ext_789GHI",
"currencyCode": "USD",
"creditLimit": "50000.00",
"dailyBudget": "1000.00",
"currentBalance": "20000.00",
"availableBalance": "15000.00",
"cappedAvailableBalance": "500.00"
}
]
}