v1

latestOpenAPI 3.0.02026-07-2466275257.1 KB
BulkWalletOperations

Update wallets in bulk

This endpoint updates multiple wallets simultaneously. Use this endpoint to update name, external ID, archived status, daily budget, and credit limit.

patch/v2/wallets/bulk/update

Request body

Example request

{
  "wallets": [
    {
      "id": "wallet_12345ABC",
      "namespaceId": "namespace_xyz987",
      "teamId": "team_456DEF",
      "name": "MainCompanyWallet",
      "externalId": "ext_789GHI",
      "currencyCode": "USD",
      "creditLimit": "50000.00",
      "dailyBudget": "1000.00"
    }
  ]
}

Response

Details of the updated wallets.

bulkIdstring

Unique identifier for the bulk operation.

status'BULK_OPERATION_SUBMITTED' | 'BULK_OPERATION_IN_PROGRESS' | 'BULK_OPERATION_COMPLETED' | 'BULK_OPERATION_FAILED'
messagestring

Success message for the operation.