action n_auth_get_session { label: "Check if the user is logged in" description: "Based on the browser/webserver session identifier, check if the user is logged in and return the associated username. This also returns additional information: the data for the login qr code and whether or not a loggin can be provoked directly from the server. Required permission: 'sessions'." provider: n_auth method: GET path: "/servers/{serverid}/sessions/" encoding: json input: { type: "object" properties: { "X-nonce": { type: "string" } serverid: { type: "string" } } required: ["X-nonce", "serverid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }