Skip to main content
PUT
/
console
/
v1
/
experiments
/
{id}
/
defer_decision
Conclude Experiment & Defer Decision
curl --request PUT \
  --url https://statsigapi.net/console/v1/experiments/{id}/defer_decision \
  --header 'Content-Type: application/json' \
  --header 'STATSIG-API-KEY: <api-key>' \
  --data '
{
  "stopReason": "We want more time before choosing a winner"
}
'
{
  "message": "Experiment successfully concluded and decision deferred."
}

Authorizations

STATSIG-API-KEY
string
header
required

Path Parameters

id
string
required

id

Body

application/json

Schema for concluding an experiment and deferring decision

stopReason
string

Optional reason for concluding the experiment and deferring the shipping decision

Example:

"We want more time before choosing a winner"

Response

Conclude Experiment & Defer Decision Success

message
string