メインコンテンツへスキップ
POST
https://{tenantDomain}/api/v2
/
experimentation
/
experiments
/
{id}
/
validate
実験を検証します。
curl --request POST \
  --url https://{tenantDomain}/api/v2/experimentation/experiments/{id}/validate \
  --header 'Authorization: Bearer <token>'
{
  "errors": [
    {
      "code": "<string>",
      "message": "<string>"
    }
  ],
  "is_valid": true
}

承認

Authorization
string
header
必須

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

パスパラメータ

id
string
必須

検証する実験のID。

レスポンス

実験の検証結果が返されました。

errors
object[]
必須

有効化を妨げている検証エラーの一覧。is_valid が true の場合は空です。

is_valid
boolean
必須

実験を有効化する準備ができているかどうか。