action shop_pro_get_script_tag { label: "スクリプトタグの取得" description: "" provider: shop_pro method: GET path: "/v1/script_tags/{scriptTagId}.json" encoding: json input: { type: "object" properties: { scriptTagId: { type: "integer" } } required: ["scriptTagId"] additionalProperties: false } output: { type: "object" properties: { script_tag: { type: "object" properties: { display_scope: { type: "string" description: "スクリプトを出力するページ。\n\n- `all`: ショップページと注文完了ページの両方\n- `shop`: ショップページ\n- `thanks_page`: 注文完了ページ\n- `cart`: カートの途中のページ\n" enum: ["all", "shop", "thanks_page", "cart"] } id: { type: "integer" description: "スクリプトタグID" } make_date: { type: "integer" description: "作成日時" } src: { type: "string" description: "スクリプトURL" } update_date: { type: "integer" description: "更新日時" } } additionalProperties: false } } } }