POST
/
v1
/
Users
/
Login
curl --request POST \
  --url https://api.creditriskmonitor.com/v1/Users/Login \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'Username=<string>' \
  --data 'Password=<string>' \
  --data 'LinkBasedMFA=<string>' \
  --data 'Key=<string>'
{
  "Success": true,
  "Data": {
    "SessionKey": "<string>",
    "Username": "<string>",
    "SessionId": 123,
    "TwoFactorAuthenticationRequired": true,
    "Key": "<string>"
  },
  "ErrorCode": "<string>"
}

You must call this endpoint first to retrieve the SessionKey before interacting with other endpoints.

Body

application/x-www-form-urlencoded
Username
string
required
Password
string
required
Key
string

Response

200
application/json
OK
Success
boolean
Data
object
ErrorCode
string