action n_auth_provoke_login_on_account { 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 account (app instance). Required permission: 'sessions' or 'accounts'." provider: n_auth method: POST path: "/servers/{serverid}/accounts/{accountid}/provokelogin" encoding: json input: { type: "object" properties: { "X-nonce": { type: "string" } accountid: { type: "string" } serverid: { type: "string" } } required: ["X-nonce", "accountid", "serverid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }