nexalwarenexalwaredocs
API ReferenceAuthentication

Change your password

POST
/api/v1/auth/change-password

Finishes the flow started by /auth/password/request-otp - same session and role requirement applies. This changes the password for the currently logged-in user; it is not a "forgot password while logged out" flow.

Authorization

sessionAuth
AuthorizationBearer <token>

A session token for an existing account, obtained from POST /auth/login (see the Authentication endpoints) - not an API key. Endpoints marked with this scheme reject API key callers outright, regardless of what that key is granted. Outside the Authentication endpoints themselves, everything requiring this scheme manages dashboard resources (schedules, rules, grants, keys, device configuration) and mirrors what a human does in the Nexalware web app - it is not meant to be automated by a third-party integration the way the Device Control endpoints are.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/api/v1/auth/change-password" \  -H "Content-Type: application/json" \  -d '{    "otp": "string",    "newPassword": "stringst"  }'
{  "ok": true}