curl --request POST \
  --url https://testnet.walletkit.com/users/login-with-magic-link \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "<string>"
}'
{
  "id": "<string>",
  "code": "<string>",
  "expired": true,
  "completed": true
}

Headers

X-WalletKit-Project-ID
string
required

Your WalletKit Project ID can be found on the API Keys page in the WalletKit Dashboard.

Body

application/json
email
string
required

Response

200
application/json
id
string
required
code
string
required
expired
boolean
required
completed
boolean
required