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)