Skip to main content
POST
/
v2
/
mfa
/
{type}
/
sign
/
{requestId}
Verify MFA Code
curl --request POST \
  --url https://api.sandbox.finsei.com/v2/mfa/{type}/sign/{requestId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "<string>"
}
'
{
  "status": "<string>",
  "data": {
    "signToken": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

type
enum<string>
required

Type of MFA method

Available options:
sms,
google
requestId
string
required

MFA request ID

Body

application/json
code
string
required
Maximum string length: 6

Response

200 - application/json

Successful verification

status
string
data
object