action cloudflare_share_excluded_recipients_list { label: "List share excluded recipients by share ID" description: "Lists the accounts excluded from an organization-targeted share. Only valid for shares with `target_type=organization`." provider: cloudflare method: GET path: "/accounts/{account_id}/shares/{share_id}/excluded-recipients" 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" } }