English
cURL
curl --request GET \ --url https://api.altostrat.io/radius/groups \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "rad_grp_01HGM5V65A5A5A5A5A5A5A5A5B", "group_name": "Engineers", "user_count": 15, "check_attributes": "<unknown>", "reply_attributes": "<unknown>", "metadata": "<unknown>", "tags": "<unknown>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ], "pagination": { "per_page": 25, "has_more": true, "next_cursor": "eyJwayI6eyJT..." }, "links": { "first": "https://api.altostrat.io/radius/users?per_page=25", "next": "https://api.altostrat.io/radius/users?per_page=25&cursor=eyJwayI6eyJT..." } }
Retrieves a paginated list of all RADIUS groups in your workspace.
Enter your API key in the format: Bearer
The number of items to return per page.
1 <= x <= 100
An opaque cursor for navigating to the next page of results.
A paginated list of groups.
Show child attributes
Unique identifier for the group.
"rad_grp_01HGM5V65A5A5A5A5A5A5A5A5B"
The name of the group.
"Engineers"
The number of users that are members of this group.
15
The number of items returned on this page.
25
True if there are more items available after this page.
true
The cursor to use to retrieve the next page of results.
"eyJwayI6eyJT..."
The URL for the first page of results.
"https://api.altostrat.io/radius/users?per_page=25"
The URL for the next page of results.
"https://api.altostrat.io/radius/users?per_page=25&cursor=eyJwayI6eyJT..."
Was this page helpful?