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>"
}Processes user login credentials and establishes session.
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>"
}SessionKey before interacting with other endpoints.OK
Show child attributes
The Session Key for the user. This Session Key must be sent in the header of all subsequent calls.
Username for the logged in user.
Session Id
True when Two Factor Authentication is required for this login. A One Time Password will be sent to the phone number on record for the user account. Make a subsiquent request to the /v1/Users/2FAKey endpoint with the One Time Password to complete Two Factor Authentication.
When the User account is setup for Device/Browser verification this field will contain a value. Send this value with subsequent requests to /v1/Users/LoginBrowser to remember 2FA verification requests.
Was this page helpful?