% if endpoint.jwt? || endpoint.basic_auth? || endpoint.oauth? %>
This API supports both JWT and Basic authentication. Basic authentication is easier to get started with, but does not support advanced features such as ACLs.
You can use either JWT or Basic authentication, but not both at the same time.
<% end %>Key | Description | Example | Default |
---|---|---|---|
Authorization |
Your OAuth token. Read more about OAuth tokens |
Bearer <access_token> |
None |
Authorization |
Your JSON web token. Read more about JWTs |
Bearer <JWT> |
None |
Authorization |
Base64 encoded API key and secret joined by a colon. Read more |
Basic <base64> |
None |