Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
curl --location --request POST 'https://v3.risklens.com/auth/connect/token' \
--header 'Content-Type: application/x-www-form-urlencoded'  \
--header 'User-Agent: PostmanRuntime/7.26.8cURL'  \
--header 'Accept: */*'  \
--data-urlencode 'grant_type=client_credentials'  \
--data-urlencode 'client_id=your_client_id'  \
--data-urlencode 'client_secret=your_client_secret'  \
--data-urlencode 'audience=api'  \
--output 'token.json'

...