Data Subject Groups V4
Update Data Subject Group
Use this API to update an existing Data Subject Group.
🗒 Things to Know
- Data Subject Groups must contain at least one primary data subject identifier and two data subjects.
- To update the Data Subject Group name, use the groupName parameter and enter a new name different from the one already in use.
put/rest/api/consent/v4/linkedidentitygroups/{dataSubjectGroupId}
Path parameters
dataSubjectGroupIdstring uuid required
The unique identifier for the Data Subject Group to be updated.
Request body
Example request
{
"groupName": "LIG_1",
"memberIdentifiers": [
"user_12345@ot.com",
"user_67890@ot.com",
"user_54321@ot.com"
],
"primaryIdentifiers": [
"user_primary@ot.com"
]
}Response
OK
Example response
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdDate": "2024-11-12T10:15:30",
"groupName": "UserAccountGroup",
"primaryDataSubjects": [
{
"id": "a3f8d56a-b123-4b2a-9eab-12cfea1bc456",
"identifier": "user@example.com",
"identifierType": "EMAIL",
"addedDate": "2024-11-12T10:15:30"
}
],
"memberDataSubjects": [
{
"id": "a3f8d56a-b123-4b2a-9eab-12cfea1bc456",
"identifier": "user@example.com",
"identifierType": "EMAIL",
"addedDate": "2024-11-12T10:15:30"
}
]
}