Confirm password reset
POST
/api/v1/auth/confirm-reset
const url = 'https://example.com/api/v1/auth/confirm-reset';const options = {method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/auth/confirm-reset \ --header 'Content-Type: application/json' \ --data '{}'Confirms and applies a password reset with a valid token
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
Examplegenerated
{}Responses
Section titled “Responses”Password reset completed
Bad Request
Internal Server Error