Skip to main content
POST
/
radius
/
groups
/
{groupId}
/
tags
/
{tagId}
Attach a Tag to a Group
curl --request POST \
  --url https://api.altostrat.io/radius/groups/{groupId}/tags/{tagId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "rad_grp_01HGM5V65A5A5A5A5A5A5A5A5B",
  "group_name": "Engineers",
  "user_count": 15,
  "check_attributes": "<any>",
  "reply_attributes": "<any>",
  "metadata": "<any>",
  "tags": "<any>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

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_.

tagId
string
required

The unique identifier for the tag, prefixed with rad_tag_.

Response

The tag was attached successfully. Returns the updated group object.

Represents a group of users with a shared set of RADIUS policies.

id
string

Unique identifier for the group.

Example:

"rad_grp_01HGM5V65A5A5A5A5A5A5A5A5B"

group_name
string

The name of the group.

Example:

"Engineers"

user_count
integer

The number of users that are members of this group.

Example:

15

check_attributes
any
reply_attributes
any
metadata
any
tags
any
created_at
string<date-time>
updated_at
string<date-time>