Request a password reset

Request

Sends an email with a link containing a token to reset a user password.

Security
PublishableApiKey
Bodyapplication/json
usernamestringrequired

Username of the account to which a verification email is sent.

curl -i -X POST \
  https://www.rebilly.com/_mock/catalog/all/storefront/account/forgot-password \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "username": "string"
  }'

Responses

Email sent.

Headers
X-RateLimit-Limitinteger

Total number of rate limit tokens for this request within a rate limit period. For more information, see Rate limits.

Example:3600
X-RateLimit-Remaininginteger

Remaining number of rate limit tokens for this request within the rate limit period. For example, in the sandbox environment, rate limits for non-GET endpoints are set at 3000 requests per 10 minutes.

Example:3600
Response
No content