Early Termination Charge
Elevate Rental API (1.5)
Provides access to rental rating values for customer and RPIs. Currently supports;
- Get the Early Termination Charge (ETC) that would apply for a given customer or RPI should the customer/RPI end the contract early
- Get the rated sell records for a rental product inventory, site or customer in a given adhoc/bill run
- Get the rated buy records for a rental product inventory, site or customer in a given bill run
- Get the suspense records for a rental product inventory, site or customer
Download OpenAPI description
Languages
Servers
https://rest.elevatebilling.com/v1
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
Return based on customer id - mandatory
Example: customerId=0
Proposed date for ETC calculation - mandatory
Example: calculationDate=yyyy-MM-dd
- https://rest.elevatebilling.com/v1/rental-etcs
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://rest.elevatebilling.com/v1/rental-etcs?page=1&pageSize=100&sort=id%2Cname+%7C+name%3Adesc&fields=id%2Cname&customerId=0&calculationDate=yyyy-MM-dd&rentalProductInventoryId=0' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
[ { "customerId": 1, "rentalProductInventoryId": 1, "amountInMajorCurrency": 10.5, "currencyCode": "GBP", "calculationDate": "2019-08-24" } ]