Change Password

Change the current user password.

Change password

post
/auth/change-password

Change password by organization user

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
passwordstringRequired

Password

Example: <password>
tokenstringRequired

Token

Example: <token>
Responses
200

OK

application/json
post
/auth/change-password
POST /api/v1/auth/change-password HTTP/1.1
Host: abp-api.akinon.net
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 43

{
  "password": "<password>",
  "token": "<token>"
}
{
  "_id": "text",
  "username": "text",
  "language": "text",
  "region": "text",
  "firstName": "text",
  "lastName": "text",
  "status": 0,
  "attributes": {},
  "avatarUrl": "text",
  "settings": {
    "mailOnBuildCompleted": true,
    "mailOnCodePushCompleted": true
  },
  "lastLoginAt": "2025-12-06T12:06:57.514Z",
  "createdAt": "2025-12-06T12:06:57.514Z",
  "updatedAt": "2025-12-06T12:06:57.514Z"
}

Last updated

Was this helpful?