action cloudflare_share_excluded_recipients_get_by_id { label: "Get share excluded recipient by ID" description: "Gets a single excluded recipient of a share by its identifier tag." provider: cloudflare method: GET path: "/accounts/{account_id}/shares/{share_id}/excluded-recipients/{excluded_recipient_id}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Account identifier." } excluded_recipient_id: { type: "string" description: "Share Excluded Recipient identifier tag." } share_id: { type: "string" description: "Share identifier tag." } } required: ["account_id", "excluded_recipient_id", "share_id"] additionalProperties: false } output: { type: "object" } }