Skip to content

User Details

Monitoring User Details

Request

You would use this endpoint to retrieve the user details related to the Global Monitoring product, such as the user's information.

Security
bearerToken
curl -i -X GET \
  https://connect.sandbox.creditsafe.com/v1/monitoring/user/details \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Bodyapplication/json
Array [
countryCodestring

The ISO/Alpha 2 format country code for the user's country.

Example:"US"
createdDatestring, (date-time)

The date that the Global Monitoring user account was created.

Example:"2020-01-01T00:00:00"
csCustomerIdnumber

The unique identifier for the user's customer account, used across the Creditsafe product suite.

Example:101662701
csUserIdnumber

The unique identifier for the user's account, used across the Creditsafe product suite.

Example:101445010
isAutoTrackerboolean

If auto-tracker is enabled, any companies that you pull a credit report for are automatically added to the portfolio that you have selected as default.

Example:false
languageCodestring

The language code for the user's preferred language.

Example:"en"
lastAccessDatestring or null, (date-time)

The date the the user last accessed the Global Monitoring product.

Example:"2020-02-01T14:30:00"
modifiedDatestring or null, (date-time)

The date that the user's details were last modified.

Example:"2020-02-01T14:30:00"
contractEndDatestring or null, (date-time)

The date that the user's contract is currently set to expire. From this date onward, the user will be unable to access to Global Monitoring product.

Example:"2021-01-01T00:00:00"
userIdnumber

The internal identifier used to reference the user's account through the Global Monitoring product.

Example:10804
]
Response
[ { "countryCode": "US", "createdDate": "2020-01-01T00:00:00", "csCustomerId": 101662701, "csUserId": 101445010, "isAutoTracker": false, "languageCode": "en", "lastAccessDate": "2020-02-01T14:30:00", "modifiedDate": "2020-02-01T14:30:00", "contractEndDate": "2021-01-01T00:00:00", "userId": 10804 } ]