PUT
/
console
/
v1
/
experiments
/
{id}
/
archive
curl --request PUT \
  --url https://statsigapi.net/console/v1/experiments/{id}/archive \
  --header 'Content-Type: application/json' \
  --header 'STATSIG-API-KEY: <api-key>' \
  --data '{
  "archiveReason": "The experiment is no longer needed"
}'
{
  "message": "Experiment successfully archived."
}

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 archiving an experiment

archiveReason
string

The reason for archiving the experiment

Example:

"The experiment is no longer needed"

Response

200
application/json
Archive Experiment Success
message
string