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.
- RUCKUS One API host for North American region.https://api.ruckus.cloud/venues/{venueId}/switchSettings
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/venues/{venueId}/switchSettings
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/venues/{venueId}/switchSettings
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
No request payloadOK
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
The name of the venue representing a physical location or site in the network infrastructure.
The list of DNS server IP addresses configured for name resolution at the venue level.
The flag indicating whether syslog forwarding is enabled for centralized logging of venue switches.
The IP address of the primary syslog server for receiving log messages from switches in this venue.
The IP address of the secondary syslog server for redundant log message reception.
The flag indicating whether CLI templates have been applied to switches in this venue.
The set of profile identifiers associated with this venue for switch configuration management.
The set of switch specific profile identifiers applied to switches in this venue.
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
{ "id": "string", "name": "string", "dns": [ "string" ], "switchLoginUsername": "string", "switchLoginPassword": "string", "syslogEnabled": true, "syslogPrimaryServer": "string", "syslogSecondaryServer": "string", "cliApplied": true, "profileId": [ "string" ], "switchProfileIds": [ "string" ], "switchCliProfileIds": [ "string" ] }
Request
Update the switch settings of the venue. Use activity API with request id to get the status update.
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
- RUCKUS One API host for North American region.https://api.ruckus.cloud/venues/{venueId}/switchSettings
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/venues/{venueId}/switchSettings
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/venues/{venueId}/switchSettings
- 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", "dns": [ "string" ], "syslogEnabled": true, "syslogPrimaryServer": "string", "syslogSecondaryServer": "string", "profileId": [ "string" ] }
OK
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
The name of the venue representing a physical location or site in the network infrastructure.
The list of DNS server IP addresses configured for name resolution at the venue level.
The flag indicating whether syslog forwarding is enabled for centralized logging of venue switches.
The IP address of the primary syslog server for receiving log messages from switches in this venue.
The IP address of the secondary syslog server for redundant log message reception.
The flag indicating whether CLI templates have been applied to switches in this venue.
The set of profile identifiers associated with this venue for switch configuration management.
The set of switch specific profile identifiers applied to switches in this venue.
- application/json
- application/vnd.ruckus.v1+json
- application/vnd.ruckus.v1.1+json
{ "id": "string", "name": "string", "dns": [ "string" ], "switchLoginUsername": "string", "switchLoginPassword": "string", "syslogEnabled": true, "syslogPrimaryServer": "string", "syslogSecondaryServer": "string", "cliApplied": true, "profileId": [ "string" ], "switchProfileIds": [ "string" ], "switchCliProfileIds": [ "string" ] }