Skip to main content
ステップ並び替え
curl --request PUT \
  --url https://api.utage-system.com/v1/funnels/{funnel_id}/steps/reorder \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "step_ids": [
    "<string>"
  ]
}
'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "sort": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

funnel_id
string
required

ファネルID

Body

application/json
step_ids
string[]
required

並び替え後の順序で全ステップIDを指定

Response

並び替え後のステップ一覧

data
object[]