User change password after login
Request
Add the parameter Authorization
to Headers Example:Authorization: ********************
or
Body Params application/jsonRequired
{
"oldPassword": "Password@123",
"newPassword": "Password@123",
"confirmPassword": "Password@123"
}
Request Code Samples
curl --location --request PATCH '/focus-pilot/api/v1/user/change-password' \
--header 'api_key;' \
--header 'deviceType;' \
--header 'deviceId;' \
--header 'timeZone;' \
--header 'language;' \
--header 'requestid;' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"oldPassword": "Password@123",
"newPassword": "Password@123",
"confirmPassword": "Password@123"
}'
Responses
This response does not have a body.
Modified at 2026-01-22 08:48:06