Security Token Service

Modified on 2023/05/12 10:46 by Administrator — Categorized as: Authentication


Description

The token service can be used to retrieve a token for use in any of the products within the Verisk Insurance Solutions-Underwriting API. Access token is retrieved via following REST call.

It will require you to provide the consumer key and consumer secret which you received on registering for the product with Verisk

Access token is valid for 60 minutes and should be cached for reuse. Once it expires, the Web Service will return HTTP 401 Unauthorized response.


Technical Details






Responses


Include access_token in the header of all subsequent requests to the ProMetrix REST service. If your token expires, you can request a new access_token following these steps.




Example Request


Example Response

 {
  "scope": "default",
  "token_type": "bearer",
  "expires_in": 1237,
  "access_token": "b456a2132bc5e7955898f5bd4e8190e"
}