Authentication
Authentication relies on OAuth 2.0 client credentials; once a token is obtained, it must be included in the Authorization header as a bearer token for each request.
Getting the token
post
Body
client_idstringRequired
Client id
client_secretstringRequired
Client secret
grant_typestringRequired
Grant Type
Responses
200
Success
application/json
Responsestring
404
Not Found
post
/api/Connect/TokenAfter get a Token
The token must be included in the Authorization header for each request. It has an expiration time of one hour, after which you will need to obtain a new one.
For instance, a quote request should look like this:
Last updated