AdminController_changePassword
Request
Add the parameter Authorization
to Headers Example:Authorization: ********************
or
Body Params application/jsonRequired
{
"oldPassword": "OldPassword@123",
"newPassword": "NewPassword@123",
"confirmPassword": "Admin@123"
}
Request Code Samples
curl --location --request PATCH '/focus-pilot/api/v1/admin/change-password' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"oldPassword": "OldPassword@123",
"newPassword": "NewPassword@123",
"confirmPassword": "Admin@123"
}'
Responses
This response does not have a body.
Modified at 2026-01-22 08:48:06