v2

latestOpenAPI 3.0.02026-08-073221853.1 MB
Experiments

Delete a Single Experiment User ID Override

Removes a single user ID from the matching userID override bucket on the experiment. Idempotent: returns 200 even when the user ID is not currently overridden.

delete/console/v1/experiments/{id}/overrides/userID/{userID}

Path parameters

idstring required

Experiment name

userIDstring required

User ID to remove from the override

Query parameters

groupIDstring required

The experiment group name the override targets

unitTypestring

The unit type of the override. Defaults to the experiment unit type when omitted.

environmentstring

Environment the override is scoped to. Omit to target the override that applies to all environments.

Response

Delete Single Experiment User ID Override Success

messagestring required

A simple string explaining the result of the operation.

Example response

{
  "overrides": [
    {
      "type": "gate",
      "id": "a_gate",
      "groupID": "Test"
    }
  ],
  "userIDOverrides": [
    {
      "groupID": "Control",
      "ids": [
        "remove_just_this_id"
      ]
    }
  ]
}