action n_auth_provoke_login { label: "Push a login confirmation to the user's app" description: "Push a login to the nextAuth app for the user to confirm, based on last account that successfully logged in for the given session. Required permission: 'sessions'.\n" provider: n_auth method: POST path: "/servers/{serverid}/sessions/provokelogin" encoding: json input: { type: "object" properties: { "X-nonce": { type: "string" } serverid: { type: "string" } } required: ["X-nonce", "serverid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }