Delete Exclusion Group
DELETE
/v2/project/{project_key}/exclusion-groups/{group_id}Remove a mutually exclusive group. The experiments in it keep running — they just stop being exclusive, so a visitor can enter more than one of them again.
Path parameters
| Parameter | Description |
|---|---|
project_key | Your project's API key |
group_id | The group's id from List Exclusion Groups |
Example
curl -X DELETE "https://api-{region}.mida.so/v2/project/YOUR_PROJECT_KEY/exclusion-groups/42" \
-H "Authorization: Bearer YOUR_GENERATED_API_KEY"
Success response
{
"success": true,
"group_id": 42,
"group_name": "Pricing page tests",
"note": "Removed. 2 experiments keep running, but they are no longer exclusive — a visitor can enter more than one of them again."
}
Errors
| Status | Meaning |
|---|---|
404 | No exclusion group with that id in this project |