Skip to main content
シナリオ作成
curl --request POST \
  --url https://api.utage-system.com/v1/accounts/{account_id}/scenarios \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "open_title": "<string>"
}
'
{
  "data": {
    "id": "<string>",
    "title": "<string>",
    "open_title": "<string>"
  }
}

Authorizations

Authorization
string
header
required

APIキーをBearerトークンとして指定

Path Parameters

account_id
string
required

アカウントID

Body

application/json
title
string
required

シナリオ名

Maximum string length: 255
open_title
string

公開用タイトル

Maximum string length: 255

Response

作成されたシナリオ

data
object