Customers represent the person or company contracted to receive products or services
- Check if customer usage charge group category summary information exists
Elevate Customer and Sites API (1.49)
- Customer - the primary entity within Elevate to represent the person or company who is contracted with a Contract Owner for the provision of products or services
- Site - within each Customer, there are one or more Sites to represent the physical locations of the Customer
Products and services are associated to the Sites as inventory items. Sites can be setup to receive invoices individually or to consolidate invoices to a particular site or sites
- https://rest.elevatebilling.com/v1/customer-usage-charge-group-category-summaries
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X HEAD \
'https://rest.elevatebilling.com/v1/customer-usage-charge-group-category-summaries?customerId=0&billRunId=0&chargeGroupCategoryId=0&chargeGroupCategoryName=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz&chargingUnitType=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Results to return per page
Comma-delimited list of the fields to sort by - defaults to ascending order, suffix :desc to change
Comma-delimited list of the field(s) to return if only a subset is required
Filter by bill run - by default we return the open bill run summary information if this is omitted
Filter by charge group category identifier
Filter by charge group category name
- https://rest.elevatebilling.com/v1/customer-usage-charge-group-category-summaries
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://rest.elevatebilling.com/v1/customer-usage-charge-group-category-summaries?page=1&pageSize=100&sort=id%2Cname+%7C+name%3Adesc&fields=id%2Cname&customerId=0&billRunId=0&chargeGroupCategoryId=0&chargeGroupCategoryName=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz&chargingUnitType=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'OK
Charging unit i.e. duration or data (MB) or one off
Charge group category name
The quantity of the usage records for this charge group category in the chargingUnitType
Price for the charge group category in major currency (e.g pounds/dollars/euros)
[ { "customerId": 1, "billRunId": 0, "chargingUnitType": "DURATION", "chargeGroupCategoryId": 1, "chargeGroupCategoryName": "string", "quantity": 80, "priceInMajorCurrency": 100 } ]