Authentication
To ensure secure data transactions, Validere"s Public API uses a secure OAuth 2.0 authorization process for accessing its API. Clients must obtain an auth0 client_id and client_secret from our technical support team, which is then used to retrieve a machine JWT token for API access.
Steps for Authentication:
Obtain Credentials: Contact our Data Services Consulting team to get your
auth0 client_idandclient_secret.Retrieve JWT Token: Use these credentials to obtain a machine JWT token from auth0.
API Access: Authenticate to the Public API using the JWT token as a Bearer token in your requests.
OAuth 2.0 Token Retrieval
Endpoint: To obtain your JWT token, use the Auth0 endpoint:
POST https://validere.auth0.com/oauth/tokenClient Credentials: To get your
client_idandclient_secretalong with the requiredaudience, please contact a member of our technical support team.Successful Outcome: A successful request will provide you with a JWT token, which you should use as a Bearer Token in subsequent API calls.
Request Details
Headers
Content-Type:
application/json
Body
Format: raw (json)
Example JSON Payload:
A bearer token can be generated using the new credentials by making the following api request:
Example usage
Note: Replace <client-id> and <client-secret> with the credentials provided by Validere
Example response
All subsequent requests require providing the bearer token as part of the Authorization header
Last updated