PUT
/
console
/
v1
/
autotunes
/
{id}
/
make_decision
curl --request PUT \
  --url https://statsigapi.net/console/v1/autotunes/{id}/make_decision \
  --header 'Content-Type: application/json' \
  --header 'STATSIG-API-KEY: <api-key>' \
  --data '{
  "id": "experiment123",
  "decisionReason": "Your reason for stopping early",
  "removeTargeting": false
}'
{
  "message": "Decision made for Autotune Experiment."
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Path Parameters

id
string
required

id

Body

application/json

Schema for updating the status of an experiment

id
string
required

The ID of the group to launch

Example:

"groupid123"

decisionReason
string
required

The reason for making the decision to update the experiment status

Example:

"Your reason for stopping early"

removeTargeting
boolean
default:false

Indicates whether to remove targeting from the experiment

Example:

false

Response

200
application/json
Finish Experiment Early Success
message
string