UserGroup
Endpoint for managing user groups
Authorizations
Responses
200
OK
application/json
404
Not Found
application/json
get
/v1/usergroupsGET /v1/usergroups HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"Created": "2025-11-01T23:47:18.883Z",
"LastModified": "2025-11-01T23:47:18.883Z",
"CreatedBy": "text",
"LastModifiedBy": "text",
"Uid": "123e4567-e89b-12d3-a456-426614174000",
"Name": "text",
"Languages": [
{
"LanguageId": 1,
"ReadOnly": true
}
],
"Segments": [
{
"SegmentUid": "123e4567-e89b-12d3-a456-426614174000",
"ReadOnly": true
}
],
"BusinessUnits": [
{
"BusinessUnitUid": "123e4567-e89b-12d3-a456-426614174000",
"ReadOnly": true
}
]
}
]Authorizations
Body
Model for creating a user group
Uidstring · uuidOptional
Unique identifier for the user group
Namestring | nullableOptional
Name of the user group
Responses
200
OK
No content
404
Not Found
application/json
post
/v1/usergroupsPOST /v1/usergroups HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 283
{
"Uid": "123e4567-e89b-12d3-a456-426614174000",
"Name": "text",
"Languages": [
{
"LanguageId": 1,
"ReadOnly": true
}
],
"Segments": [
{
"SegmentUid": "123e4567-e89b-12d3-a456-426614174000",
"ReadOnly": true
}
],
"BusinessUnits": [
{
"BusinessUnitUid": "123e4567-e89b-12d3-a456-426614174000",
"ReadOnly": true
}
]
}No content
Authorizations
Body
Update model for a user group
Uidstring · uuidOptional
Unique identifier for the user group
Namestring | nullableOptional
Name of the user group
Responses
200
OK
No content
404
Not Found
application/json
put
/v1/usergroupsPUT /v1/usergroups HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 283
{
"Uid": "123e4567-e89b-12d3-a456-426614174000",
"Name": "text",
"Languages": [
{
"LanguageId": 1,
"ReadOnly": true
}
],
"Segments": [
{
"SegmentUid": "123e4567-e89b-12d3-a456-426614174000",
"ReadOnly": true
}
],
"BusinessUnits": [
{
"BusinessUnitUid": "123e4567-e89b-12d3-a456-426614174000",
"ReadOnly": true
}
]
}No content
Authorizations
Path parameters
uidstring · uuidRequired
Responses
200
OK
application/json
404
Not Found
application/json
get
/v1/usergroups/{uid}GET /v1/usergroups/{uid} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"Created": "2025-11-01T23:47:18.883Z",
"LastModified": "2025-11-01T23:47:18.883Z",
"CreatedBy": "text",
"LastModifiedBy": "text",
"Uid": "123e4567-e89b-12d3-a456-426614174000",
"Name": "text",
"Languages": [
{
"LanguageId": 1,
"ReadOnly": true
}
],
"Segments": [
{
"SegmentUid": "123e4567-e89b-12d3-a456-426614174000",
"ReadOnly": true
}
],
"BusinessUnits": [
{
"BusinessUnitUid": "123e4567-e89b-12d3-a456-426614174000",
"ReadOnly": true
}
]
}Last updated