action cloudflare_access_identity_providers_list_access_identity_providers { label: "List Access identity providers" description: "Lists all configured identity providers." provider: cloudflare method: GET path: "/accounts/{account_id}/access/identity_providers" encoding: json input: { type: "object" properties: { account_id: { type: "string" description: "Identifier." } per_page: { type: "integer" description: "Number of results per page." } scim_enabled: { type: "string" description: "Indicates to Access to only retrieve identity providers that have the System for Cross-Domain Identity Management (SCIM) enabled." } } required: ["account_id"] additionalProperties: false } output: { type: "object" } }