Skip to main content
POST
/
api
/
storefront
/
customer
/
recover
Recover
curl --request POST \
  --url https://api.example.com/api/storefront/customer/recover \
  --header 'Content-Type: application/json' \
  --header 'X-Site-ID: <x-site-id>' \
  --data '
{
  "email": "jsmith@example.com"
}
'
{
  "delivered": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.stella-commerce.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

X-Site-ID
string
required
X-Stella-Token
string | null

Body

application/json
email
string<email>
required

Response

Successful Response

Same shape regardless of whether the email was registered. The delivered field reports whether we actually attempted a send; callers should not branch on it for UI — it's there for tests.

delivered
boolean
required