action cloudflare_access_idp_federation_grants_get { label: "Get an IdP federation grant" description: "Retrieves a single IdP federation grant by its UID." provider: cloudflare method: GET path: "/accounts/{account_id}/access/idp_federation_grants/{grant_id}" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } grant_id: { type: "string" description: "Identifier." } } required: ["account_id", "grant_id"] additionalProperties: false } output: { type: "object" } }