Tenants

Get tenant usage statistics

Retrieve usage metrics including customer count, active subscriptions, and total revenue.

get/api/tenants/me/usage

Response

Usage metrics for the current billing period

customersnumber required
activeSubscriptionsnumber required
totalInvoicesnumber required
totalRevenuestring required

Example response

{
  "customers": 42,
  "activeSubscriptions": 15,
  "totalInvoices": 120,
  "totalRevenue": "125000.00"
}

Changes

Changed in 1 of the 2 revisions of this API.1

    • added the media type application/json for the response with the status 200

      response-media-type-added