Manage AAA (authentication, authorization, and accounting) servers.
Switch Services (0.4.0)
The Switch Service REST API facilitates the management and configuration of RUCKUS ICX switches via the RUCKUS One platform. This API allows for programmatic control of switch operations, network configurations, security policies, and monitoring across various environments.
- Manage ICX switch devices and their configurations
- Configure network settings including VLANs, ports, LAGs, and virtual ethernet interfaces
- Control security policies with AAA servers, ACLs, and trusted port settings
- Create and apply switch profiles and templates for consistent configurations
- Handle firmware upgrades and configuration backups
- Configure DHCP servers and static routing
- Import and onboard new switches to the platform
- Manage CLI templates and web authentication pages
All API calls require valid authentication via JWT (JSON Web Token) in Authorization header.
Select the appropriate API endpoint based on your region:
- North America: https://api.ruckus.cloud
- Europe: https://api.eu.ruckus.cloud
- Asia: https://api.asia.ruckus.cloud
The API uses standard HTTP status codes with detailed error messages in the response body.
All endpoints may return these common error responses:
- 400 Bad Request: Invalid input data or validation errors
- 401 Unauthorized: Missing or invalid authentication
- 403 Forbidden: Insufficient permissions
- 404 Not Found: Requested resource doesn't exist
- 422 Unprocessable Entity: Business rule violations
- 500 Internal Server Error: Unexpected server errors.
- application/json
- application/vnd.ruckus.v1+json
The status filter to limit results to configuration deployments with specific status values such as success, failed, or in progress.
The sorting information specifying the sort column and direction for ordering configuration history records.
The configuration type filter to limit results to specific types such as VLAN, ACL, or port configurations.
The maximum number of configuration history records to return per page, defaulting to 8.
The page size for pagination in the new request format, superseding the limit parameter when provided.
The sort column for ordering configuration history records in the new request format.
The sort order direction, either ascending or descending, for the new request format.
- RUCKUS One API host for North American region.https://api.ruckus.cloud/switches/{switchId}/configHistDetails/query
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/switches/{switchId}/configHistDetails/query
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/switches/{switchId}/configHistDetails/query
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
{ "filterByStatus": "ALL", "sortInfo": { "sortColumn": "startTime", "dir": "ASC" }, "filterByConfigType": "string", "page": 0, "limit": 0, "pageSize": 0, "sortField": "startTime", "sortOrder": "ASC", "filters": { "filterByStatus": "ALL", "configType": [ … ] } }
{ "id": "string", "totalCount": 0, "list": [ { … } ] }
- RUCKUS One API host for North American region.https://api.ruckus.cloud/switches/{switchId}/transactions/{transactionId}/configHistDetails
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/switches/{switchId}/transactions/{transactionId}/configHistDetails
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/switches/{switchId}/transactions/{transactionId}/configHistDetails
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
No request payload{ "id": "string", "totalCount": 0, "list": [ { … } ] }