Cannot use the API, it throws 401/403/404 errors
Following the HTTP standards, you should know that:
401 Unauthorizedresponse code means that you are not authenticated (in simpler terms "not logged in").403 Forbiddenresponse code means that you are not authorized to access your designated resource.404 Not Foundresponse code means that the resource you are looking for does not exist.
Having that in mind during the usage of our API you might encounter these in multiple scenarios.
Reason for receiving "401" errors
The reason for getting 401 Unauthorized errors is simply because you did not provide or provided a wrong Bearer Authorization header (reference the Getting Access section for additional details).
Reason for receiving "403" errors
One of the most common reasons for receiving a 403 Forbidden is that the issued access_token being used is not authorized to access an endpoint or an action is not allowed on the access_token.
Reason for receiving "404" errors
Make sure to use the right REST API endpoints:
Last updated