Skip to main content
POST
/
api
/
v1
/
auth
/
reset-password
Reset:Reset Password
curl --request POST \
  --url https://api.cognee.ai/api/v1/auth/reset-password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "<string>",
  "password": "<string>"
}
'
import requests

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

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

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

print(response.text)

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
token
string
required
password
string
required

Response

Successful Response