Request a password reset email for the account with the supplied email address. The response status and body are identical whether or not an account exists for the email; clients must not treat the success response as confirmation that an account exists.
- Mock serverhttps://developers.ev.energy/_mock/ev.energy-api-v2/auth/password_reset
- Live API for both production and sandbox requests.https://api.ev.energy/v2/auth/password_reset
- Staging server for internal testing only.https://api-staging.ev.energy/v2/auth/password_reset
curl -i -X POST \
https://developers.ev.energy/_mock/ev.energy-api-v2/auth/password_reset \
-H 'Content-Type: application/json' \
-H 'EvEnergy-Version: 2' \
-d '{
"email": "user@example.com"
}'Reset email request accepted.
Headers
Indicates the version of the API that generated this response. If EvEnergy-Version was not specified in the request, this will be your OAuth application's default version.
Value:2
The maximum number of requests that can be made to this endpoint per hour. Defaults to 1000 but may vary per client.
Default:1000
The number of requests remaining until this client's rate limit is reached.
Default:999
Response
{ "status": "password_reset_email_sent" }