API Docs / Schemas / UserBillingSummaryDto

UserBillingSummaryDto

Summary of the tenant's per-user billing position: how many users are included
in their subscription, how many they have, and what any additional users cost.

Properties

Name Type Description
includedUserCountinteger

Number of users included in the subscription at no extra charge

Number of users included in the subscription at no extra charge

additionalUserPricePenceinteger

Monthly price in pence for each user above IncludedUserCount. 0 = overage billing disabled.

Monthly price in pence for each user above IncludedUserCount. 0 = overage billing disabled.

billableUserCountinteger

Current number of users counting towards the allowance (Active and Invited)

Current number of users counting towards the allowance (Active and Invited)

additionalUserCountinteger

Number of users above the included allowance (0 when within the allowance)

Number of users above the included allowance (0 when within the allowance)

estimatedMonthlyChargePenceinteger

Estimated monthly charge in pence for the additional users
(AdditionalUserCount x AdditionalUserPricePence)

Estimated monthly charge in pence for the additional users
(AdditionalUserCount x AdditionalUserPricePence)

JSON Example

{
  "includedUserCount": 0,
  "additionalUserPricePence": 0,
  "billableUserCount": 0,
  "additionalUserCount": 0,
  "estimatedMonthlyChargePence": 0
}

Used By Operations