Skip to content

Return Logged In User Details

Request

Returns the details of logged in user.

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

Responses

Bodyapplication/json
usernamestring

The name of the user.

Example:"Raj"
emailAddressstring

The email address of the user.

Example:"connectm1@mailinator.com"
owningEntitystring

Owning entity of the user.

Example:"CSUS"
defaultLanguagestring

user default language.

Example:"EN"
primaryContactobject
ietfLanguagestring

user default language.

Example:"en-GB"
countryCodestring

country code of the user.

Example:"en-GB"
isActivestring

status of the user.

Example:true
correlationIdstring

A unique ID assigned to this request.

Example:"23921650-c073-11ea-860f-06bc8182190e"
Response
{ "username": "Raj", "emailAddress": "connectm1@mailinator.com", "owningEntity": "CSUS", "defaultLanguage": "EN", "primaryContact": { "title": "", "firstName": "", "surname": "" }, "ietfLanguage": "en-GB", "countryCode": "en-GB", "isActive": true, "correlationId": "23921650-c073-11ea-860f-06bc8182190e" }