Cannot use the API, it throws 401/403/404 errors
Last updated
Last updated
Following the HTTP standards, you should know that:
401 Unauthorized
response code means that you are not authenticated (in simpler terms "not logged in").
403 Forbidden
response code means that you are not authorized to access your designated resource.
404 Not Found
response 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.
The reason for getting 401 Unauthorized
errors is simply because you did not provide or provided a wrong Bearer
Authorization
header (reference the section for additional details).
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.
Make sure to use the right REST API endpoints: