Authorization

Every REST API endpoint you access requires that you supply an access token in the header of your request to verify that you are an authorized user.

Authorization involves the following three steps:

  1. Generate a client secret based on your client ID. You only need to do this once. However, since the secret is confidential, any time you change the client secret, take care to only provide the secret to the vetted parties with access to the API.
  2. Use the secret to get an access token.
  3. Include the access token in all API requests.