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
AuthSession

Confirm email

Confirm the current user email

POST
/v3/session/confirm-email

Request Body

application/json

email*string

The email address

Formatemail
code*string

The confirmation code

nonce*Nonce|Nonce

Response Body

application/json

curl -X POST "https://api.misaka.io/v3/session/confirm-email" \  -H "Content-Type: application/json" \  -d '{    "email": "user@example.com",    "code": "string",    "nonce": "string"  }'
{
  "success": true
}

How is this guide?

Last updated on

Change password POST

Previous Page

Login with 2FA POST

Next Page

curl -X POST "https://api.misaka.io/v3/session/confirm-email" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "user@example.com",
    "code": "string",
    "nonce": "string"
  }'