API Authorization

This topic explains the license and mechanisms that are required to use the Vade Cloud™ API, available on https://cloud.vadesecure.com/rest/v3.0.

In order to use the API, you need to retrieve 2 properties and use them in all requests to the API:

  • The Auth token
  • The accountID

Authorization header

The following authorization HTTP header must be passed with all requests to the API:
x-vrc-authorization: "LOGIN:TOKEN"

Account ID

The account ID must be passed in various forms depending on the API request. Typically, this is often passed in POST requests as a specific property:

{
  "accountId": your_accountID,
  ...
}