List enrollments in this Stratos service. Requires admin authorization.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
Cursor for the next page. Absent on the last page.
enrollments
array
Required
No description available.
total
integer
Optional
Total number of enrollments in the service. Absent when a boundary filter is applied.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"enrollments"
],
"properties": {
"total": {
"type": "integer",
"description": "Total number of enrollments in the service. Absent when a boundary filter is applied."
},
"cursor": {
"type": "string",
"description": "Cursor for the next page. Absent on the last page."
},
"enrollments": {
"type": "array",
"items": {
"ref": "#enrollment",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of enrollments to return."
},
"cursor": {
"type": "string",
"description": "Pagination cursor from a previous response."
},
"boundary": {
"type": "string",
"description": "Only return members holding this boundary."
}
}
},
"description": "List enrollments in this Stratos service. Requires admin authorization."
}