OpenAPI 3.0.02026-08-133221853.1 MB
edf696031d4a
Autotunes
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.
delete/console/v1/autotunes/{id}/overrides/userID/{userID}
Path parameters
idstring required
Autotune name
userIDstring required
User ID to remove from the override
Query parameters
groupIDstring required
Example:Control
The autotune variant name the override targets
unitTypestring
The unit type of the override. Defaults to the autotune unit type when omitted.
environmentstring
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"
}
]
}
}