User Group
Endpoint for managing user groups
OK
Model used for UserGroups
Date and time when the user group was created
Date and time when the user group was last modified
User that created the user group
User that last modified the user group
Unique identifier for the user group
Name of the user group
Not Found
GET /v1/usergroups HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
[
{
"Created": "2026-01-01T00:00:00.000Z",
"LastModified": "2026-01-01T00:00:00.000Z",
"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
}
]
}
]Model for creating a user group
Unique identifier for the user group
Name of the user group
OK
No content
Not Found
POST /v1/usergroups HTTP/1.1
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
Update model for a user group
Unique identifier for the user group
Name of the user group
OK
No content
Not Found
PUT /v1/usergroups HTTP/1.1
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
OK
Model used for UserGroups
Date and time when the user group was created
Date and time when the user group was last modified
User that created the user group
User that last modified the user group
Unique identifier for the user group
Name of the user group
Not Found
GET /v1/usergroups/{uid} HTTP/1.1
Authorization: YOUR_API_KEY
Accept: */*
{
"Created": "2026-01-01T00:00:00.000Z",
"LastModified": "2026-01-01T00:00:00.000Z",
"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