Skip to main content
POST
/
merchant
/
member
/
confirm_totp_key
Admin Member Confirm 2FA Key
curl --request POST \
  --url https://api.unibee.top/merchant/member/confirm_totp_key \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "totpCode": "<string>",
  "totpKey": "<string>",
  "totpType": 123
}'
{
  "code": 123,
  "data": {},
  "message": "<string>",
  "redirect": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
totpCode
string<string>

The totp code

totpKey
string<string>

TotpKey

totpType
integer

1-General, Google Authenticator | 2-Microsoft Authenticator | 3-Authy | 4-1Password | 5-LastPass | 6-FreeOTP | 7-Other TOTP

Response

200 - application/json
code
integer
data
object
message
string<string>
redirect
string<string>
requestId
string<string>