In order to call the non-authenticating endpoints you need to send an Access Token through the request headers.
To receive this token you have to call the GenerateAccessToken endpoint that can create two types of tokens:
- IP bound token with an Expiration Time
- Will only work for the IP that requested the Token and for the minutes specified on the tokenLifeTime
- Unrestricted token
- Will work for an unlimited time, is not IP bound and will be accepted as long as the credentials stay the same. (This type of token is created by having the Credentials’ tokenLifeTime set to “Never”).
After receiving the token, you may use it on all other methods by sending this token throughout the Authorization Request header.