Request a password-reset email.
curl --request POST \
--url https://tryno.io/api/auth/request-password-reset \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({email: '<string>'})
};
fetch('https://tryno.io/api/auth/request-password-reset', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://tryno.io/api/auth/request-password-reset"
payload = { "email": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text){}{
"error": "<string>"
}auth
Request a password-reset email.
POST
/
auth
/
request-password-reset
Request a password-reset email.
curl --request POST \
--url https://tryno.io/api/auth/request-password-reset \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({email: '<string>'})
};
fetch('https://tryno.io/api/auth/request-password-reset', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://tryno.io/api/auth/request-password-reset"
payload = { "email": "<string>" }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text){}{
"error": "<string>"
}Corpo
application/json
Resposta
Success.
The response is of type object.
⌘I

