DKBSignDocs

API reference

POSTPublic

Send login MFA email

/api/v1/login/mfa/email/send

Submit `/api/v1/login/mfa/email/send`. Authenticated routes need `Authorization: Bearer {token}` from `POST /api/v1/login`.

Path parameters

This endpoint has no path parameters.

Query parameters

This endpoint has no query parameters.

Request body

FieldTypeDescription
challenge_token
Required
stringChallenge token returned by login.

Responses

StatusMeaning
502See the example response.

Request

curl
curl -X POST 'https://api.dkbsigns.com/api/v1/login/mfa/email/send' \
  -H 'Content-Type: application/json' \
  -d '{"challenge_token":"challenge_token"}'

Response 200

json
{
  "status": "success",
  "message": "Upstream response is forwarded unchanged."
}