Authentication

Endpoints for user authentication.

Authenticates a user for the current websocket session

post

Authenticates using either username/password or API key method.

Authorizations
Body
one ofOptional
Responses
200
Authentication result
application/json
post
POST /ap/AuthenticateUser HTTP/1.1
Host: apstage.proxy.kiiex.io
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 85

{
  "APIKey": "text",
  "Signature": "text",
  "UserId": "text",
  "UserName": "text",
  "Nonce": "text"
}
{
  "user": {
    "userId": 1,
    "userName": "text",
    "email": "text",
    "emailVerified": true,
    "accountId": 1,
    "omsId": 1,
    "use2FA": true
  },
  "authenticated": true,
  "locked": true,
  "requires2FA": true,
  "twoFAType": "text",
  "twoFAToken": "text"
}

Was this helpful?