Manage the RADIUS attribute groups.
Radius Attribute Group (1.0.9)
The RADIUS Attribute Group Management API allows creation, modification, and deletion ofRADIUS attribute groups.
- Create and manage RADIUS attribute groups
- Assign attributes to groups
- Query available RADIUS attributes
- Manage external service assignments
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
- 409 Conflict: Resource conflict (e.g., duplicate names)
- 422 Unprocessable Entity: Business rule violations
- 500 Internal Server Error: Unexpected server errors
Download OpenAPI description
Overview
License
Languages
Servers
RUCKUS One API host for North American region.
https://api.ruckus.cloud/
RUCKUS One API host for European region.
https://api.eu.ruckus.cloud/
RUCKUS One API host for Asian region.
https://api.asia.ruckus.cloud/
- RUCKUS One API host for North American region.https://api.ruckus.cloud/radiusAttributes/query
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/radiusAttributes/query
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/radiusAttributes/query
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
application/json
{ "sortField": "string", "sortOrder": "ASC", "page": 0, "pageSize": 1, "filters": { "property1": {}, "property2": {} } }
Response
{ "totalCount": 0, "page": 0, "pageSize": 0, "data": [ { … } ] }
- RUCKUS One API host for North American region.https://api.ruckus.cloud/radiusAttributes
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/radiusAttributes
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/radiusAttributes
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
No request payloadResponse
{ "totalElements": 0, "totalPages": 0, "pageable": { "paged": true, "pageNumber": 0, "pageSize": 0, "offset": 0, "sort": { … }, "unpaged": true }, "first": true, "last": true, "size": 0, "content": [ { … } ], "number": 0, "sort": { "sorted": true, "empty": true, "unsorted": true }, "numberOfElements": 0, "empty": true }
- RUCKUS One API host for North American region.https://api.ruckus.cloud/radiusAttributes/{id}
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/radiusAttributes/{id}
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/radiusAttributes/{id}
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
No request payloadResponse
application/json
{ "id": 0, "name": "string", "vendorName": "string", "dataType": "ABINARY", "showOnDefault": true, "_links": { "property1": { … }, "property2": { … } } }
- RUCKUS One API host for North American region.https://api.ruckus.cloud/radiusAttributes/vendors
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/radiusAttributes/vendors
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/radiusAttributes/vendors
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
No request payloadResponse
{ "supportedVendors": [ "string" ] }