CONNECT Authenticate is a global authentication service that generates Bearer JWT tokens for accessing Creditsafe Sweden REST APIs. This includes GetDataUnits REST, DateCheck Consumer REST, DateCheck Company REST, GetSignatory v2 REST, GetData REST, and SPAR Consumer search v2 REST.
Connect Authenticate (1.0.0)
https://connect.creditsafe.com/
Request
Endpoint to generate a Bearer JWT Authentication Token using your username (User Key) and password. The token is required for accessing all Creditsafe Sweden REST APIs including GetDataUnits, DateCheck Consumer, DateCheck Company, GetSignatory v2, GetData, and SPAR Consumer search v2. Tokens are valid for one hour and multiple valid tokens can exist simultaneously.
Your User Key as provided by Creditsafe (case-sensitive). Note: This is NOT the email address used for website login.
- CONNECT Production server (used for all authentication)
https://connect.creditsafe.com/v1/authenticate
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://connect.creditsafe.com/v1/authenticate \
-H 'Content-Type: application/json' \
-d '{
"username": "myUsername",
"password": "myS3cretP@ssw0rd999!"
}'Successful authentication - Returns JWT token valid for 1 hour
JWT Bearer token to be included in the Authorization header for all subsequent API requests. Valid for 1 hour from generation. Multiple valid tokens can exist simultaneously.
{ "token": "eyJhbGciOiJSUzI1NiIsImtpZCI6Im…hPeGE7Ak8YtKFbA" }