Activate account or email-change
POST
/me/activate
const url = 'https://example.com/me/activate';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"email":"example","otp":"example","password":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/me/activate \ --header 'Content-Type: application/json' \ --data '{ "email": "example", "otp": "example", "password": "example" }'Request Body required
Section titled “Request Body required ” Media type application/json
object
email
required
string
otp
required
string
password
required
Example generated
{ "email": "example", "otp": "example", "password": "example"}