Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"old_password": "password",
"password": "new_password",
"password_confirmation": "new_password"
}
Request Code Samples
curl --location --globoff 'https://api.enviablelogistics.com/auth/change-password' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"old_password": "password",
"password": "new_password",
"password_confirmation": "new_password"
}'
Responses
application/json
Modified at 2024-09-18 18:27:25