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.
Request
Schedule the firmware upgrade for venues. Use activity API with request id to get the status update.
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
The set of model version pairs specifying target firmware versions for different switch models in this upgrade schedule.
The list of switch identifiers to include in the scheduled firmware upgrade.
- RUCKUS One API host for North American region.https://api.ruckus.cloud/venues/{venueId}/switchFirmwares/schedules
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/venues/{venueId}/switchFirmwares/schedules
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/venues/{venueId}/switchFirmwares/schedules
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
{ "id": "string", "date": "string", "time": "string", "versions": [ { … } ], "switchIds": [ "string" ], "preDownload": true }
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
{ "requestId": "string", "response": { "id": "string" } }
Request
Schedule the firmware upgrade for venues. Use activity API with request id to get the status update.
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
The list of switch identifiers to include in the scheduled firmware upgrade.
- RUCKUS One API host for North American region.https://api.ruckus.cloud/venues/{venueId}/switchFirmwares/schedules
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/venues/{venueId}/switchFirmwares/schedules
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/venues/{venueId}/switchFirmwares/schedules
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
{ "id": "string", "date": "string", "time": "string", "switchVersion": "string", "switchVersionAboveTen": "string", "switchIds": [ "string" ], "preDownload": true }
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
{ "requestId": "string", "response": { "id": "string" } }
- RUCKUS One API host for North American region.https://api.ruckus.cloud/venues/{venueId}/switchFirmwares/schedules
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/venues/{venueId}/switchFirmwares/schedules
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/venues/{venueId}/switchFirmwares/schedules
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- application/json
- application/vnd.ruckus.v1+json
{ "id": "string", "switchIds": [ "string" ] }
- application/json
- application/vnd.ruckus.v1+json
{ "requestId": "string", "response": { "id": "string" } }
- RUCKUS One API host for North American region.https://api.ruckus.cloud/switchFirmwares/schedules/switches/query
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/switchFirmwares/schedules/switches/query
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/switchFirmwares/schedules/switches/query
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
{ "searchFilter": "string", "venueIdList": [ "string" ] }
OK
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
SwitchVersion attributes. Deprecated,this version, application/vnd.ruckus.v1+json will be removed no sooner than 08/31/2026.
The next scheduled firmware upgrade at the switch level.
The next scheduled firmware upgrade at the venue level affecting this switch.
The flag indicating whether the upgrade schedule is defined at the switch level rather than venue level.
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
[ { "id": "string", "venueId": "string", "venueName": "string", "switchId": "string", "switchName": "string", "isStack": true, "model": "string", "currentFirmware": "string", "availableVersion": { … }, "switchNextSchedule": { … }, "venueNextSchedule": { … }, "preDownload": true, "isSwitchLevelSchedule": true } ]
- RUCKUS One API host for North American region.https://api.ruckus.cloud/switchFirmwares/schedules/query
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/switchFirmwares/schedules/query
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/switchFirmwares/schedules/query
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
{ "searchFilter": "string", "firmwareVersion": "string" }
OK
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
SwitchVersion attributes. Deprecated,this version, application/vnd.ruckus.v1+json will be removed no sooner than 08/31/2026.
SwitchVersion attributes. Deprecated,this version, application/vnd.ruckus.v1+json will be removed no sooner than 08/31/2026.
The list of available firmware versions that can be upgraded to for switches in this venue.
The timestamp of the last update to the firmware upgrade schedule for this venue.
The flag indicating whether firmware pre download is enabled for switches in this venue.
The number of switches with firmware version above 10 in this venue.
The current firmware upgrade status for this venue, such as pending, in progress, or completed.
The total number of scheduled firmware upgrades configured for this venue.
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
[ { "id": "string", "venueId": "string", "venueName": "string", "switchFirmwareVersion": { … }, "switchFirmwareVersionAboveTen": { … }, "availableVersions": [ … ], "nextSchedule": { … }, "lastScheduleUpdateTime": "2019-08-24T14:15:22Z", "preDownload": true, "switchCount": 0, "aboveTenSwitchCount": 0, "status": "NONE", "scheduleCount": 0 } ]
- RUCKUS One API host for North American region.https://api.ruckus.cloud/switchFirmwares/versions/{versionType}
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/switchFirmwares/versions/{versionType}
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/switchFirmwares/versions/{versionType}
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
No request payload- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
[ { "id": "string", "name": "string", "category": "RECOMMENDED", "createdDate": "2019-08-24T14:15:22Z" } ]
- RUCKUS One API host for North American region.https://api.ruckus.cloud/switchFirmwares/currentVersions
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/switchFirmwares/currentVersions
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/switchFirmwares/currentVersions
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
No request payload- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
{ "id": "string", "currentVersions": [ "string" ], "currentVersionsAboveTen": [ "string" ] }