action dracoon_initiate_open_id_login { label: "Initiate OpenID Connect authentication" description: "

🚧 Deprecated since v4.14.0

\n\n### Description:\nThis is the first step of the OpenID Connect authentication. \nThe user is send to the OpenID Connect identity provider to authenticate himself and retrieve an authorization code.\n\n### Precondition:\nNone.\n\n### Postcondition:\nUser is redirected to OpenID Connect identity provider to authenticate himself.\n\n### Further Information:\nNone." provider: dracoon method: GET path: "/v4/auth/openid/login" encoding: json input: { type: "object" properties: { issuer: { type: "string" } language: { type: "string" } redirect_uri: { type: "string" } test: { type: "boolean" } } required: ["issuer", "language", "redirect_uri", "test"] additionalProperties: false } output: { type: "object" additionalProperties: true } }