Skip to main content
PUT
/
console
/
v1
/
experiments
/
{id}
/
partial_pause
Partially Pause Experiment
curl --request PUT \
  --url https://statsigapi.net/console/v1/experiments/{id}/partial_pause \
  --header 'Content-Type: application/json' \
  --header 'STATSIG-API-KEY: <api-key>' \
  --data '
{
  "pausePercent": 50
}
'
{
  "message": "Experiment successfully partially paused."
}

Authorizations

STATSIG-API-KEY
string
header
required

Path Parameters

id
string
required

id

Body

application/json
pausePercent
number<double>
required

The percentage of traffic to be paused for the experiment, between 0 and 100.

Required range: 0 <= x <= 100

Response

Partially Pause Experiment Success

message
string