Skip to main content

Patient - MFA

POST /auth/tenant/Patient/login/mfa
devhttps://api.sandbox.ovok.com

Login with MFA token. Success response contains a challenge token that can be used to finish login via login/token endpoint.

Request body

Content-Type: application/json

  • mfaToken: string (required)
  • loginId: string (required)

Responses

CodeDescription
200Success.
400The request could not be operated by the server.
401The resource owner or authorization server denied the request.
404The requested resource could not be found.
422The request could not be validated by the server.
500The server encountered an unexpected condition. Please try again later.

200StartPatientMFAResponseDto (application/json)

  • nextStep: string (required)
  • sessionCode: string (required)

Example

{
"nextStep": "token",
"sessionCode": "xU5keKxDB7gFWcguI5dAwMvti173sNBt"
}