Authorization
Descope Project ID Project ID as bearer token.
In: header
Request Body
application/json
Sent a password reset email to an existing user utilizing the password API.
Next Steps
You will then need to verify the user after the password reset is sent via email, this would need to be done via Verify Magic Link.
See Also
- See The User Object for further details on how to identify users and their contact information such as email addresses and phone number.
- You can also utilize Update Password or Replace Password as alternatives to change a user's password.
curl -X POST "https://api.descope.com/v1/auth/password/reset" \ -H "Content-Type: application/json" \ -d '{}'{ "resetMethod": "string", "pendingRef": "string", "linkId": "string", "maskedEmail": "string"}export interface Response {resetMethod?: stringpendingRef?: stringlinkId?: stringmaskedEmail?: string}Get Password Policy GET
### Get the configured password policy for the project. ### See Also - See [Password Policy Customization](/auth-methods/passwords#password-policy) for further details on password policy configuration.
Exchange Key POST
### Exchange API key for access token This API Endpoint will take an API key for the project and provide an access token to be used for accessing the application. The session token JWT token will be valid for the configured [Session Token Timeout](/project-settings#session-token-timeout), and its expiration time will be provided in the `expiration` field of the response object.