Request Password Reset email

Use this REST method to request a password reset email.

Rest API Method

Password Reset Request

POST https://production.suggestic.com/api/v1/password_reset

Headers

NameTypeDescription

Suggestic-Partner

String

Content-Type*

String

application/json

Request Body

NameTypeDescription

email*

String

User email.

Rest API Curl Example

curl --location --request POST 'https://production.suggestic.com/api/v1/password_reset' \
--header 'Suggestic-Partner: suggestic' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "user@suggestic.com"
}'

Last updated