Wallet Metrics

Query Metrics Related to Wallet and Product Usage

Fetch account usage information

post

Fetch accounting usage per wallet-id

Authorizations
Path parameters
organizationIdstring · uuidRequired

The ID of the Organization

walletIdstring · uuidRequired

The ID of the Wallet

Body
periodStartstring · dateRequired
periodEndstring · dateRequired
periodGroupstring · enumRequiredPossible values:
Responses
200
List of results
application/json
post
POST /organizations/{organizationId}/reporting/accounting/wallets/{walletId}/usage HTTP/1.1
Host: 
Authorization: Bearer jwt
Content-Type: application/json
Accept: */*
Content-Length: 95

{
  "periodStart": "2025-07-10",
  "periodEnd": "2025-07-10",
  "periodGroup": "day",
  "groupBy": [
    "product"
  ]
}
{
  "periodGroup": "day",
  "dataColumns": [
    "walletId"
  ],
  "results": [
    {
      "periodDate": "2025-07-10",
      "totalCharged": 1,
      "totalCount": 1,
      "data": [
        "text"
      ]
    }
  ]
}

Fetch account product usage information details

post

Fetch accounting usage details per wallet-id

Authorizations
Path parameters
organizationIdstring · uuidRequired

The ID of the Organization

walletIdstring · uuidRequired

The ID of the Wallet

productIdstring · uuidRequired

The ID of the product

Body
periodStartstring · dateRequired
periodGroupstring · enumRequiredPossible values:
Responses
200
List of results
application/json
post
POST /organizations/{organizationId}/reporting/accounting/wallets/{walletId}/usage/product/{productId}/details HTTP/1.1
Host: 
Authorization: Bearer jwt
Content-Type: application/json
Accept: */*
Content-Length: 48

{
  "periodStart": "2025-07-10",
  "periodGroup": "day"
}
{
  "periodStart": "2025-07-10",
  "periodGroup": "day",
  "dataColumns": [
    "text"
  ],
  "results": [
    {
      "periodDate": "2025-07-10",
      "priceEach": 1,
      "totalCharged": 1,
      "totalCount": 1,
      "data": [
        "text"
      ]
    }
  ]
}

Last updated

Was this helpful?