action dracoon_request_open_id_auth_info { label: "Request OpenID Connect provider authentication information" description: "### Description: \nProvides information about OpenID Connect authentication options.\n\n### Precondition:\nNone.\n\n### Postcondition:\nOpenID Connect authentication options information is returned.\n\n### Further Information:\nNone." provider: dracoon method: GET path: "/v4/public/system/info/auth/openid" encoding: json input: { type: "object" properties: { is_global_available: { type: "boolean" } } additionalProperties: false } output: { type: "object" description: "List of OpenID Connect providers" required: ["items"] properties: { items: { type: "array" description: "List of available OpenID Connect identity providers" items: { type: "object" description: "OpenID Connect provider information" required: ["id", "isGlobalAvailable", "issuer", "mappingClaim", "name"] properties: { id: { type: "integer" format: "int32" description: "ID" } isGlobalAvailable: { type: "boolean" description: "Is available for all customers" } issuer: { type: "string" description: "Issuer identifier of the IDP\n\nThe value is a case sensitive URL." } mappingClaim: { type: "string" description: "Name of the claim which is used for the user mapping." } name: { type: "string" description: "Name of the IDP" } userManagementUrl: { type: "string" description: "URL of the user management UI.\n\nUse empty string to remove." } } } } } } }