Misaka.io | Docs
Misaka.io | Docs
API Documentation
Change password POST
Confirm email POSTLogin with 2FA POSTLogin POSTLogout POSTRefresh user token POSTGet current user token POST
Get team members GETGet current available teams GET
List devices GET
Port info GETList ports GETPort transceiver metrics GETPort usage metrics GET
List services GET
List cross connects GET
Create IP announcements POSTDelete IP announcement DELETEGet IP announcements GETUpdate IP announcement PATCH
Lighthouse
Network Flow Timeseries POST
Event Attachment GETEvent Detail Related GETEvent List All GETEvent List Related GETEvent List Related Timeseries GET
AuthAccount

Change password

Change the current user password

POST
/v3/account/password

Authorization

AuthBearerActiveUser

AuthorizationBearer <token>

In: header

Request Body

application/json

current_password*string

The current password

Length6 <= length
new_password*string

The new password

Length6 <= length
logout_all_sessions?Logout All Sessions|Logout All Sessions

If true, all sessions will be logged out

Defaultfalse

Response Body

application/json

curl -X POST "https://api.misaka.io/v3/account/password" \  -H "Content-Type: application/json" \  -d '{    "current_password": "string",    "new_password": "string"  }'
{
  "success": true
}

How is this guide?

Last updated on

API Documentation

Previous Page

Confirm email POST

Next Page

curl -X POST "https://api.misaka.io/v3/account/password" \
  -H "Content-Type: application/json" \
  -d '{
    "current_password": "string",
    "new_password": "string"
  }'