Delete a Single Autotune User ID Override
Removes a single user ID from the matching userID override bucket on the autotune. Idempotent: returns 200 even when the user ID is not currently overridden. Only clears the bucket named by groupID, unitType, and environment; every other override bucket stays in place. The response body carries the full override set for the autotune after the delete.
Path parameters
Autotune name
User ID to remove from the override
Query parameters
The autotune variant name the override targets
The unit type of the override. Defaults to the autotune unit type when omitted.
Environment the override is scoped to. Omit to target the override that applies to all environments.
Response
Delete Single Autotune User ID Override Success
Example response
{
"message": "Autotune Overrides updated successfully.",
"data": {
"overrides": [
{
"type": "gate",
"id": "a_gate",
"groupID": "Test",
"environment": null
}
],
"userIDOverrides": [
{
"groupID": "Control",
"ids": [
"user_a"
],
"environment": null,
"unitType": "userID"
},
{
"groupID": "Control",
"ids": [
"user_b"
],
"environment": "staging",
"unitType": "userID"
},
{
"groupID": "Test",
"ids": [
"user_c"
],
"environment": null,
"unitType": "userID"
}
]
}
}Changes
Changed in 1 of the 8 revisions of this API.1
- ○
added the non-success response with the status
400response-non-success-status-added
- ○