Skip to content

Authentication

The Wombat API will authenticate request using either basic auth or jwt tokens.

Basic Authentication

To use Basic authentication your must first encode your email and password into a Base64 encoded string <email>:<password>. With that you will add the header

Authentication: Basic <base64 encoded string>

to your HTTPS request.

Token Authentication

To Authenticate a request using the jwt token. You must first retrieve a token from the login process. With this add the header

Authentication: Bearer <token>