メインコンテンツへスキップ
POST
https://{tenantDomain}/api/v2
/
experimentation
/
experiments
/
{id}
/
validate
Validate an experiment.
curl --request POST \
  --url https://{tenantDomain}/api/v2/experimentation/experiments/{id}/validate \
  --header 'Authorization: Bearer <token>'
{
  "is_valid": true,
  "errors": [
    {
      "code": "<string>",
      "message": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://auth0.com/llms.txt

Use this file to discover all available pages before exploring further.

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

パスパラメータ

id
string
必須

The ID of the experiment to validate.

レスポンス

Experiment validation result returned.

is_valid
boolean
必須

Whether the experiment is ready to be activated.

errors
object[]
必須

List of validation errors preventing activation. Empty when is_valid is true.