Usage rate cards represent the pricing structure for usage products that can be sold to Customers
Elevate Pricing API (2.21)
Provides read & write access to usage and rental rate cards and inclusive usage plans
- Usage Rate Card - a representation of the pricing structure for usage that can be sold to Customers, for example 5 pence per minute for UK National calls
- Rental Rate Card - a representation of the pricing structure for rental product that can be sold to Customers, for example £10 per month for line rental
- Inclusive Usage Plan - a representation of an inclusive bundle that can be sold to a Customer, for example you can allocate 500 free minutes to UK National or Local calls
Download OpenAPI description
Languages
Servers
https://rest.elevatebilling.com/v2
Query
Results to return per page
Example: pageSize=100
Comma-delimited list of the fields to sort by - defaults to ascending order, suffix :desc to change
Example: sort=id,name | name:desc
Comma-delimited list of the field(s) to return if only a subset is required
Example: fields=id,name
Filter by usage product inventory id
Example: usageProductInventoryId=0
Filter by inclusive usage plan assignment id
Example: assignmentId=0
Filter by inclusive usage plan id
Example: inclusiveUsagePlanId=0
- https://rest.elevatebilling.com/v2/inclusive-usage-balances
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://rest.elevatebilling.com/v2/inclusive-usage-balances?page=1&pageSize=100&sort=id%2Cname+%7C+name%3Adesc&fields=id%2Cname&customerId=0&siteId=0&usageProductInventoryId=0&billRunId=0&assignmentId=0&inclusiveUsagePlanId=0&componentId=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
[ { "billRunId": 0, "periodStartDate": "2025-09-01", "periodEndDate": "2025-09-30", "usageProductInventoryId": 0, "inclusiveUsageBalanceAssignments": [ … ] } ]