v4
latestOpenAPI 3.0.02026-08-04109113304.5 KBGroups
Update an Exclusion Group
Update an exclusion group by ID.
patch/groups/{group_id}
Path parameters
group_idinteger required
The group ID of the Exclusion Group you want to change
Request body
Example request
{
"description": "The Exclusion Group is updated!",
"entities": [
{
"id": 1234,
"kind": "Experiment",
"weight": 5000
}
],
"name": "Updated Exclusion Group"
}Response
Return the updated Exclusion Group
Example response
{
"entities": [
{
"id": 1234,
"kind": "Experiment",
"weight": 5000
}
],
"id": 3000,
"name": "Homepage Group",
"project_id": 1000
}