Change password
POST
/api/v1/me/password
const url = 'http://localhost:3000/api/v1/me/password';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"currentPassword":"example","newPassword":"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 http://localhost:3000/api/v1/me/password \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "currentPassword": "example", "newPassword": "example" }'Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/json
object
currentPassword
required
Current password
string
newPassword
required
New password
string
Example generated
{ "currentPassword": "example", "newPassword": "example"}Responses
Section titled “ Responses ”Password changed successfully
Invalid current password or weak new password