<% if endpoint.jwt? || endpoint.basic_auth? || endpoint.oauth? %>

Authentication

<% if endpoint.jwt? && endpoint.basic_auth? %>

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 %>
<% if endpoint.oauth? %> <% end %> <% if endpoint.jwt? %> <% end %> <% if endpoint.basic_auth? %> <% 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
<% end %>