Skip to main content
POST
/
api
/
v1
/
auth
/
reset-password
Reset password
curl --request POST \
  --url https://api.callaro.ai/api/v1/auth/reset-password \
  --header 'Content-Type: application/json' \
  --data '
{
  "password": "<string>",
  "reset_password_token": "<string>",
  "token": "<string>",
  "password_confirmation": "<string>"
}
'
const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
password: '<string>',
reset_password_token: '<string>',
token: '<string>',
password_confirmation: '<string>'
})
};

fetch('https://api.callaro.ai/api/v1/auth/reset-password', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.callaro.ai/api/v1/auth/reset-password"

payload = {
"password": "<string>",
"reset_password_token": "<string>",
"token": "<string>",
"password_confirmation": "<string>"
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "data": {},
  "message": "<string>",
  "meta": {},
  "request_id": "<string>"
}
{
"error": "<string>",
"error_code": "<string>",
"request_id": "<string>",
"details": {},
"errors": [
"<string>"
]
}
{
"error": "<string>",
"error_code": "<string>",
"request_id": "<string>",
"details": {},
"errors": [
"<string>"
]
}

Body

application/json
password
string
required
reset_password_token
string | null
token
string | null
password_confirmation
string | null

Response

Password updated

data
object | null
message
string | null
meta
object | null
request_id
string | null