Access (1.0.0)
This API provides essential endpoints for user information and authentication, crucial for accessing and utilising any subsequent products.
The authentication endpoint ensures secure access to the main API.
The user endpoints return comprehensive details about logged-in users within the customer's environment and provide higher-level user information.
Additionally, the API allows users to view their subscriptions for available products and the languages that are supported.
https://connect.sandbox.creditsafe.com/v1/
https://connect.creditsafe.com/v1/
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/access
- Production server
https://connect.creditsafe.com/v1/access
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://connect.sandbox.creditsafe.com/v1/access \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "correlationId": "string", "countryAccess": { "creditsafeConnectOnlineReports": [ … ], "creditsafeConnectOfflineReports": [ … ], "creditsafeConnectMonitoring": [ … ], "creditsafeConnectDirectorReports": [ … ], "creditsafeConnectImageDocuments": [ … ], "creditsafeConnectBankValidation": [ … ], "creditsafeConnectBankVerification": [ … ] } }
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/access/users/active
- Production server
https://connect.creditsafe.com/v1/access/users/active
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://connect.sandbox.creditsafe.com/v1/access/users/active \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "items": [ { … } ], "totalSize": 0 }
- Sandbox server
https://connect.sandbox.creditsafe.com/v1/access/users/me
- Production server
https://connect.creditsafe.com/v1/access/users/me
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://connect.sandbox.creditsafe.com/v1/access/users/me \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
{ "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" }