Skip to main content
POST
/
radius
/
groups
/
{groupId}
/
users
Add a User to a Group
curl --request POST \
  --url https://api.altostrat.io/radius/groups/{groupId}/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "username": "testuser@altostrat.io"
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Enter your API key in the format: Bearer <token>

Path Parameters

groupId
string
required

The unique identifier for the group, prefixed with rad_grp_.

Body

application/json
username
string
required

The username of the user to add to the group.

Example:

"testuser@altostrat.io"

Response

The user was successfully added to the group.