Skip to main content
ページ更新
curl --request PUT \
  --url https://api.utage-system.com/v1/funnels/{funnel_id}/steps/{step_id}/pages/{page_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "content_type": "elements",
  "html_source": "<string>",
  "page_title": "<string>",
  "elements": [
    {}
  ],
  "meta_title": "<string>",
  "meta_description": "<string>",
  "meta_og_image": "<string>",
  "is_no_index": 0,
  "pc_width": 123,
  "border_type": "shadow",
  "swipe_type": "none",
  "background_color": "<string>",
  "background_image_src": "<string>",
  "background_image_style": "cover_fixed",
  "js_head": "<string>",
  "js_body_top": "<string>",
  "js_body": "<string>",
  "css": "<string>",
  "use_popup": 0,
  "popup_action": "exit",
  "popup_width": 800,
  "popup_background_color": "<string>",
  "popup_vertical_align": "top",
  "popup_elements": [
    {}
  ],
  "is_high_speed_mode": 0
}
'
{
  "data": {
    "id": "<string>",
    "funnel_id": "<string>",
    "step_id": "<string>",
    "title": "<string>",
    "content_type": "elements",
    "page_title": "<string>",
    "html_source": "<string>",
    "elements": [
      {}
    ],
    "meta_title": "<string>",
    "meta_description": "<string>",
    "meta_og_image": "<string>",
    "is_no_index": 0,
    "pc_width": 123,
    "border_type": "shadow",
    "swipe_type": "none",
    "background_color": "<string>",
    "background_image_src": "<string>",
    "background_image_style": "cover_fixed",
    "js_head": "<string>",
    "js_body_top": "<string>",
    "js_body": "<string>",
    "css": "<string>",
    "use_popup": 0,
    "popup_action": "exit",
    "popup_width": 123,
    "popup_background_color": "<string>",
    "popup_vertical_align": "top",
    "popup_elements": [
      {}
    ],
    "is_high_speed_mode": 0,
    "step_url": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

funnel_id
string
required

ファネルID

step_id
string
required

ステップID

page_id
string
required

ページID

Body

application/json
title
string
required

管理用タイトル

Maximum string length: 255
content_type
enum<string>

コンテンツタイプ(作成後に変更不可。異なる値を指定すると400エラー)

Available options:
elements,
raw_html
html_source
string

HTML文字列(content_type=raw_html時に必須、最大4MB)

page_title
string

ページ表示タイトル(content_type=elementsのみ)

elements
object[]

要素の配列(content_type=elements時)。GETで取得した構造をベースに変更箇所のみ修正して送信

meta_title
string

OGPタイトル

Maximum string length: 255
meta_description
string

OGP説明文

Maximum string length: 500
meta_og_image
string<uri>

OGP画像URL

is_no_index
enum<integer>

noindex設定

Available options:
0,
1
pc_width
integer

PC表示時のコンテンツ幅

border_type
enum<string>

ボーダータイプ

Available options:
shadow,
border,
none
swipe_type
enum<string>

ページスワイプ

Available options:
none,
vertical,
horizontal
background_color
string

ページ全体の背景色

Pattern: ^#[0-9A-Fa-f]{6}$
background_image_src
string<uri>

背景画像URL

background_image_style
enum<string>

背景画像の表示方式

Available options:
cover_fixed,
w100,
h100,
no_repeat,
repeat
js_head
string

head内JavaScript

js_body_top
string

body直後JavaScript

js_body
string

body末尾JavaScript

css
string

カスタムCSS

use_popup
enum<integer>

ポップアップ使用

Available options:
0,
1
popup_action
enum<string>

ポップアップ表示条件

Available options:
exit,
exit_all
popup_width
integer

ポップアップ幅

Required range: 600 <= x <= 1000
popup_background_color
string

ポップアップ背景色

Pattern: ^#[0-9A-Fa-f]{6}$
popup_vertical_align
enum<string>

ポップアップ垂直配置

Available options:
top,
centered
popup_elements
object[]

ポップアップ要素の配列

is_high_speed_mode
enum<integer>

高速表示モード

Available options:
0,
1

Response

更新されたページ

data
object