Equipment Terminal Loader
The Equipment Terminal Loader API lets you search and retrieve equipment products to use in your equipment order flow (see Equipment Order API). You can perform a paged search over all products or fetch a single product by manufacturer and device type.
Base URLs
Sandbox
https://boarding-sb.clearent.net/api/
Production
https://boarding.clearent.net/api/
Headers
Content-Type: application/json
Accept: application/json
AccessKey: Secret access key issued by Xplor Pay
Available Endpoints:
Get Products List:
GET /api/equipment/products
Get Single Product:
GET /api/equipment/products/{manufacturer}/{deviceType}
Path Parameters
{manufacturer}
String
Required
Product manufacturer name
{deviceType}
String
Required
Device type identifier
Additional Information
Usage Workflow:
Retrieve multiple products Use the
/api/equipment/products
endpoint to retrieve multiple Equipment Boarding products with a configurable paged response. Supported query parameters include:term
– search for a specific product (leave blank to search all products)size
– number of products to be returned in the responsepage
– desired page of products to return in the response when returning a paged response.sort
– sort order for results (asc
ordesc
)isSoftware
–true
for software products,false
for hardware
Note: By default, the page size is set to 25 records.
Retrieve a single product Use the
/api/equipment/products/{manufacturer}/{deviceType}
endpoint to search by manufacturer and device type. One matching product is returned.Fetch the configuration survey After obtaining a product, call the Equipment Configuration Survey API to retrieve the survey for that product.
Last updated
Was this helpful?