action authentiq_authorize { label: "Authenticate a user" description: "Start a session with Authentiq Connect to authenticate a user.\n\n```\nGET https://connect.authentiq.io/authorize?client_id=&response_type=code+id_token&scope=openid+email&redirect_uri=&state=0123456789\n```\n\nThis endpoint also supports the POST method.\n" provider: authentiq method: GET path: "/authorize" encoding: json input: { type: "object" properties: { client_id: { type: "string" } display: { type: "string" } max_age: { type: "integer" } nonce: { type: "string" } prompt: { type: "string" } redirect_uri: { type: "string" } response_mode: { type: "string" } response_type: { type: "string" } scope: { type: "string" } state: { type: "string" } ui_locales: { type: "string" } } required: ["client_id", "redirect_uri", "response_type", "scope", "state"] additionalProperties: false } output: { type: "object" additionalProperties: true } }