action n_auth_provoke_login_on_user { 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 the given userid. Required permission: 'sessions' or 'users'." provider: n_auth method: POST path: "/servers/{serverid}/users/{userid}/provokelogin" encoding: json input: { type: "object" properties: { "X-nonce": { type: "string" } serverid: { type: "string" } userid: { type: "string" } } required: ["X-nonce", "serverid", "userid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }