Skip to main content
POST
/
api
/
v1
/
auth
/
magic-link
/
request
cURL
curl --request POST \
  --url https://api.backside.app/api/v1/auth/magic-link/request \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>"
}
'
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
email
string
required

Response

Uniform response (no email existence leakage)

message
string
required