action cloudflare_shares_get_by_id { label: "Get account share by ID" description: "Fetches share by ID." provider: cloudflare method: GET path: "/accounts/{account_id}/shares/{share_id}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Account identifier." } share_id: { type: "string" description: "Share identifier tag." } } required: ["account_id", "share_id"] additionalProperties: false } output: { type: "object" } }