Skip to main content
POST
/
radius
/
tags
Create Tag
curl --request POST \
  --url https://api.altostrat.io/radius/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "color": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "color": "<string>",
  "user_count": 123,
  "group_count": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required
color
string
required

Response

201 - application/json

Tag created.

id
string
name
string
color
string
user_count
integer
group_count
integer