Authentication by email OTP
We send an OTP to the user's email address.
Header parameters
Brand-URLstringRequiredExample:
The brand URL of the request. This is used to identify the brand.
YOUR_BRAND_URL
Body
The request for the email OTP authentication.
Responses
200
The request was successful.
application/json
400
Request is invalid
application/json
404
The user was not found in the database.
application/json
429
The user has exceeded the rate limit.
application/json
post
POST /api/v1/users/auth/passwordless/email-otp HTTP/1.1
Host: protocol.jframework.io
Brand-URL: text
Content-Type: application/json
Accept: */*
Content-Length: 40
{
"emailAddress": "[email protected]"
}
{
"success": true,
"statusCode": 200,
"message": "The request was successful.",
"data": "ojLdGCcokeTyaseHvSAJtQh3ho2ey5jf8IdOimzlOS/ObjKMCh0e/NWomcYddisNYVPUEs1XRCcdq5oBNPiHEXRrhf7LY7mrJsALH0KXGv+mWscLpCfSINMA/5wf5Tyw4wcRKPIKZTUtOX49zpVRpcaRpIk9NqTNKNK243fXEQmqAsIWYWO1MDXuonI123WWncNCnBzRbdqAzkd3hQzix+dYLMq4zO76HSNtkjVCZw2nS3+ZM=",
"errors": []
}
Last updated
Was this helpful?