Walletguide
DevelopersAPIReferencetransactions

Selection summary

Per-currency amount sums and count over a selection (explicit ids, or a filter minus deselected ids). Read-only aggregate — uncapped, so it sums selections…

POST
/wallets/{walletId}/transactions/selection_summary

Authorization

bearerAuth
Authorization<token>

A Walletguide API key (wg_…) or an OAuth bearer token. Paste the value only. Create a key under Wallet settings → API keys.

In: header

Path Parameters

walletId*string

Row uuid

Formatuuid

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/wallets/497f6eca-6276-4993-bfeb-53cbbbba6f08/transactions/selection_summary" \  -H "Content-Type: application/json" \  -d '{    "selection": {      "mode": "ids",      "ids": [        "string"      ]    }  }'
{  "count": 0,  "sums": [    {      "currency": "string",      "value": 0    }  ],  "partialSums": [    {      "currency": "string",      "value": 0    }  ]}