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