Early Termination Charge
Elevate Rental API (1.6)
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
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
Return based on rental product inventory identifier - required unless the "siteId+adhocBillRunId/billRunId" or "customerId+adhocBillRunId/billRunId" filter combinations have been specified
Filter based on adhoc bill run identifier
Filter based on customer identifier - required with "adhocBillRunId/billRunId" unless the "rentalProductInventoryId" or "siteId+adhocBillRunId/billRunId" filter combinations have been specified
Filter based on site identifier - required with "adhocBillRunId/billRunId" unless the "rentalProductInventoryId" or "customerId+adhocBillRunId/billRunId" filter combinations have been specified
Filter based on price type (e.g. Rental)
Filter by product reference (main billing number). Supports like: prefix for partial match.
Filter by invoice presentation name (description). Supports like: prefix for partial match.
Logical operator used to combine siteName, productReference and invoicePresentationName filters. Accepted values AND (default), OR. When AND is used, only records matching all filters are returned. When OR is used, records matching any filter are returned.
- https://rest.elevatebilling.com/v1/rental-rated-sell-records
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://rest.elevatebilling.com/v1/rental-rated-sell-records?page=1&pageSize=100&sort=id%2Cname+%7C+name%3Adesc&fields=id%2Cname&rentalProductInventoryId=0&billRunId=0&adhocBillRunId=0&customerId=0&siteId=0&priceType=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz&siteName=string&productReference=string&invoicePresentationName=string&logic=xyz+%7C+in%3Ax%2Cy+%7C+like%3Axyz' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'[ { "id": 1, "rentalProductInventoryId": 1, "customerId": 0, "siteId": 0, "billRunId": 1, "billRunName": "string", "billRunStatus": "string", "adhocBillRunId": 1, "creationDate": "2019-08-24", "chargeStartDate": "2019-08-24", "chargeEndDate": "2019-08-24", "preDiscountPrice": 10.5, "sellPrice": 10.5, "priceType": "Rental", "siteName": "string", "productReference": "string", "invoicePresentationName": "string", "qty": 1 } ]