Groups

This endpoint allows you to perform actions on a specific Group of your Team.

Fetch All Groups

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

OK

application/json
Responseobject
get
/api/v1/groups
200

OK

Fetch Group by its ID

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
groupIdstringRequired

ID of tag

Responses
200

OK

application/json
Responseobject
get
/api/v1/group/{groupId}
200

OK

Create Group

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
objectOptionalExample: {"name":"GoodAccess group","forced_always_on_included":true,"forced_always_on_excluded":true,"geo_restriction_included":false}
Responses
200

OK

application/json
Responseobject
post
/api/v1/group

Update Group by its ID

put
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
groupIdstringRequired

ID of tag

Body
objectOptionalExample: {"name":"GoodAccess group","forced_always_on_included":true,"forced_always_on_excluded":true,"geo_restriction_included":false}
Responses
200

OK

application/json
Responseobject
put
/api/v1/group/{groupId}

Remove Group by its ID

delete
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
groupIdstringRequired

ID of tag

Responses
200

OK

application/json
Responseobject
delete
/api/v1/group/{groupId}

Last updated

Was this helpful?