The Manage Entitlements API provides endpoints to manage entitlements. You can use this API to retrieve detailed information about entitlements, usage statistics, available licenses, and expired licenses. This API helps you effectively manage your entitlements and make informed decisions about licensing. Assignments API manage entitlement assignments. You can retrieve a list of assignments, create new assignments, update existing ones, and delete individual assignments.
- Get Entitlement Usage Report
https://api.devalto.ruckuswireless.com/
https://api.devalto.ruckuswireless.com/entitlements/mileageReports/query
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
{ "page": 1, "pageSize": 30, "filters": { "usageType": "ASSIGNED", "licenseType": "APSW", "isTrial": true } }
{ "status": "success", "message": "Object created/updated successfully.", "page": 0, "pageSize": 0, "totalCount": 0, "data": [ { … } ] }
- application/vnd.ruckus.v1+json
- application/json
Start date from which the license is valid.
End date until which the license is valid. Required if operator max quantity is selected.
Number of licenses available. Required if operator max period is selected.
Filter criteria for the request
https://api.devalto.ruckuswireless.com/entitlements/availabilityReports/query
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
{ "effectiveDate": "2024-01-22", "expirationDate": "2025-02-21", "quantity": 5, "operator": "MAX_QUANTITY", "filters": { "usageType": "ASSIGNED", "licenseType": "APSW", "isTrial": true } }
{ "status": "success", "message": "Object created/updated successfully.", "data": { "effectiveDate": "2024-01-22", "expirationDate": "2024-02-21", "quantity": 5, "licenseType": "APSW", "isTrial": false } }
Specific license type if the tenant is an ALM tenant, valid value: MSP_APSW (default), MSP_URLF, MSP_EDGE_SECS, MSP_EDGE_SECL
The first date included in the usage report, for example, startDate=yyyy-mm-dd; if omitted, the startDate is set to last month's first date.
The end date included in the usage report, for example, endDate=yyyy-mm-dd; if omitted, the endDate is set to last month's last date.
True to include device detail in the report. False to exclude device detail in the report.
Page number for the daily reports. If missing or value 0 means no pagination, all daily reports will be returned.
https://api.devalto.ruckuswireless.com/entitlements/licenseUsageReports
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
No request payload
{}