UserGroup
Endpoint for managing user groups
Last updated
Endpoint for managing user groups
Last updated
GET /v1/usergroups HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"Created": "2025-12-08T09:41:43.570Z",
"LastModified": "2025-12-08T09:41:43.570Z",
"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
}
]
}
]POST /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
}
]
}PUT /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
}
]
}GET /v1/usergroups/{uid} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"Created": "2025-12-08T09:41:43.570Z",
"LastModified": "2025-12-08T09:41:43.570Z",
"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
}
]
}DELETE /v1/usergroups/{uid} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*