Manages enrollment registration admin views.
Admin Enrollments (0.0.1)
The Admin Enrollment REST API provides administrative capabilities for managing and monitoring user enrollments and device registrations within RUCKUS One platform. These APIs enable administrators to query enrollment records, view registration details, and track enrollment activities across the organization. Use these endpoints to retrieve enrollment information, search registrations by various criteria, and monitor the overall enrollment workflow status.
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
Body
- application/json
- application/vnd.ruckus.v1+json
Search criteria and pagination details
Sort direction for ordering query results in ascending or descending order.
Enum"ASC""DESC"
Number of records in a page.If not specified default page size of 20 will be applied.
Network address of the enrolled device.
Enrollment status.
Enum"CREATED""STARTED""FINISHED""ABANDONED""ACTIVE""INACTIVE""REVOKED"
- RUCKUS One API host for North American region.https://api.ruckus.cloud/enrollments/query
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/enrollments/query
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/enrollments/query
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
{ "sortDirection": "ASC", "page": 0, "pageSize": 0, "workflowId": "43c4fa9b-0cbc-4b57-a121-9d7d46a3eaa4", "enrollmentId": "883e2903-3e2f-407c-ae2a-1274a4137945", "description": "string", "macAddress": "string", "ipAddress": "string", "status": "CREATED", "sortFields": "workflowId" }
Response
{ "totalPages": 0, "totalElements": 0, "first": true, "last": true, "size": 0, "content": [ { … } ], "number": 0, "sort": { "empty": true, "sorted": true, "unsorted": true }, "pageable": { "offset": 0, "sort": { … }, "paged": true, "pageNumber": 0, "pageSize": 0, "unpaged": true }, "numberOfElements": 0, "empty": true }
- RUCKUS One API host for North American region.https://api.ruckus.cloud/enrollments/{enrollmentId}
- RUCKUS One API host for European region.https://api.eu.ruckus.cloud/enrollments/{enrollmentId}
- RUCKUS One API host for Asian region.https://api.asia.ruckus.cloud/enrollments/{enrollmentId}
- Payload
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
No request payloadResponse
{ "workflowId": "43c4fa9b-0cbc-4b57-a121-9d7d46a3eaa4", "enrollmentId": "883e2903-3e2f-407c-ae2a-1274a4137945", "description": "string", "macAddress": "string", "ipAddress": "string", "status": "CREATED", "userAgentName": "string", "variables": [ { … } ], "_links": { "property1": { … }, "property2": { … } } }