PUT
/
console
/
v1
/
experiments
/
{id}
/
abandon
curl --request PUT \
  --url https://statsigapi.net/console/v1/experiments/{id}/abandon \
  --header 'Content-Type: application/json' \
  --header 'STATSIG-API-KEY: <api-key>' \
  --data '{
  "decisionReason": "Your reason for stopping early"
}'
{
  "message": "Experiment successfully abandoned."
}

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
decisionReason
string
required

The reason for making the decision to update the experiment status

Example:

"Your reason for stopping early"

Response

200
application/json
Abandon Experiment Success
message
string