action shop_pro_get_shop_script_tag { label: "スクリプトタグの取得" description: "" provider: shop_pro method: GET path: "/appstore/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: { account_id: { type: "string" description: "アカウントID" } display_scope: { type: "string" description: "スクリプトを出力するページ\n- `shop`: ショップページ\n- `thanks_page`: 注文完了ページ\n" enum: ["shop", "thanks_page"] } id: { type: "integer" description: "スクリプトタグID" } integrity: { type: "string" description: "スクリプトファイルのハッシュ値(script tagのintegrity属性)" } make_date: { type: "integer" description: "作成日時" } oauth_application_id: { type: "integer" description: "OAuthアプリケーションID" } src: { type: "string" description: "スクリプトURL" } update_date: { type: "integer" description: "更新日時" } } additionalProperties: false } } } }