Creates request to reset password via email
POSThttps://api.spectrocloud.com/v1/auth/user/password/reset
Creates request to reset password via email. Password reset email will be sent to the user. Sends 204 No Content.
Request
- application/json
Body
required
emailIdstringrequired
Describes email if for which password reset email has to be sent
Responses
- 204
Ok response without content
Response Headers
- curl
- python
- go
- nodejs
- java
- CURL
curl -L -X POST 'https://api.spectrocloud.com/v1/auth/user/password/reset' \
-H 'Content-Type: application/json' \
--data-raw '{
"emailId": "string"
}'