Authenticate2FA

Authenticate 2FA

post

Completes the second part of two-factor authentication (2FA) by sending the authentication token from a third-party authentication system to the Order Management System (OMS). Process: 1. Call webauthenticateuser to obtain TwoFAType and TwoFAToken. 2. Use TwoFAToken in your authentication app (e.g., Google Authenticator). 3. The authentication app returns a new token. 4. Call authenticate2FA with the new token.

Authorizations
Body
CodestringRequired

Token obtained from the third-party authentication source.

Responses
200
Successful authentication
application/json
post
POST /authenticate2fa HTTP/1.1
Host: api.kiiex.com
APIKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 15

{
  "Code": "text"
}
{
  "Authenticated": true,
  "SessionToken": "text"
}