action shop_pro_update_inline_script_tag { label: "インラインスクリプトタグの更新" description: "" provider: shop_pro method: PUT path: "/v1/inline_script_tags/{inlineScriptTagId}.json" encoding: json input: { type: "object" properties: { inlineScriptTagId: { type: "integer" } inline_script_tag: { type: "object" properties: { display_scope: { type: "string" description: "インラインスクリプトを出力するページ。\n\n- `all`: カートの途中のページと注文完了ページの両方\n- `thanks_page`: 注文完了ページ\n- `cart`: カートの途中のページ\n" enum: ["all", "thanks_page", "cart"] } script: { type: "string" description: "インラインスクリプト" } trigger_event: { type: "string" description: "インラインスクリプトを実行するタイミング。\n\n- `object_builded`: JSオブジェクトの作成が完了した時\n" enum: ["object_builded"] } } } } required: ["inlineScriptTagId"] additionalProperties: false } output: { type: "object" properties: { inline_script_tag: { type: "object" properties: { account_id: { type: "string" description: "アカウントID" } display_scope: { type: "string" description: "インラインスクリプトを出力するページ。\n\n- `all`: カートの途中のページと注文完了ページの両方\n- `thanks_page`: 注文完了ページ\n- `cart`: カートの途中のページ\n" enum: ["all", "thanks_page", "cart"] } id: { type: "integer" description: "インラインスクリプトタグID" } make_date: { type: "integer" description: "作成日時" } oauth_application_id: { type: "integer" description: "アプリID" } script: { type: "string" description: "インラインスクリプト" } trigger_event: { type: "string" description: "インラインスクリプトを実行するタイミング。\n\n- `object_builded`: JSオブジェクトの作成が完了した時\n" enum: ["object_builded"] } update_date: { type: "integer" description: "更新日時" } } additionalProperties: false } } } }