1. Docs
  2. API Reference
  3. OAuth hosted login: verify the emailed MFA code

OAuth hosted login: verify the emailed MFA code

POST/oauth/mfa/email-otp/verify

Step 2 of the hosted email-OTP MFA factor: verifies the emailed code against the challenge_token. On success it optionally issues a trusted-device cookie, mints an authorization code, and redirects to redirect_uri; on failure it re-renders the challenge page in the "code sent" state with the error. Throttled to 10 requests per minute.

Request body

application/json

challenge_tokenstring Required
client_idstring Required
redirect_uristring Required
response_typestring Required
scopestring Required
statestring Optional
code_challengestring Required
code_challenge_methodstring Required
codestring Required

The one-time code received via email.

remember_deviceboolean Optional

Responses

200
Request
curl -X POST "https://auth.canopy-io.com/oauth/mfa/email-otp/verify" \
  -H "Content-Type: application/json" \
  -d '{
    "challenge_token": "string",
    "client_id": "string",
    "redirect_uri": "string",
    "response_type": "string",
    "scope": "string",
    "state": "string",
    "code_challenge": "string",
    "code_challenge_method": "string",
    "code": "string",
    "remember_device": false
  }'
Response
HTTP/1.1 200

(empty body)
Related endpoints Was this page helpful?

Tell us how we can improve this guide.