Verify a 6-digit code and receive a short-lived session token (valid for 15 minutes).
cURL
curl --request POST \ --url https://api.openwhispr.com/api/v1/auth/email-code/verify \ --header 'Content-Type: application/json' \ --data ' { "email": "jsmith@example.com", "code": "<string>" } '
{ "data": { "token": "<string>", "expires_at": "2023-11-07T05:31:56Z" } }
6
Session token.
Show child attributes