cURL
curl --request POST \ --url https://gateway.creditbenchmark.com/api/security/token \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data Username=your_username \ --data Password=your_password
{ "accessToken": "eyJraWQiOiJ4WldoaUZMd05OZ1VZVEtoVjVtam8tOFlvbTZ5Y0pyRXpGWlpqN3ltQ1E4IiwiYWxnIjoiUlMyNTYifQ...", "expiresIn": 7200, "tokenType": "Bearer" }
Create a JWT token.
Request a JSON response.
application/json
Your Credit Benchmark username.
"your_username"
Your Credit Benchmark password.
"your_password"
Access token generated successfully
Bearer access token.
Token lifetime in seconds.
7200
Token type.
"Bearer"
Was this page helpful?