Skip to main content
POST
/
account
/
password
Password Reset
curl --request POST \
  --url https://api.marzipan.co/v1/account/password \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]",
  "returnUrl": "<string>"
}
'
{
  "message": "string"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your API token.

Body

application/json
email
string<email>
returnUrl
string<uri>

Response

Success