Authentication

⌘K
  1. Home
  2. Docs
  3. Authentication
  4. Introduction

Introduction

All our RESTful APIs uses HTTP Basic Authentication Scheme. Username and password are submitted in every request.

For example, if the username is user1 and password is pass1 then the resulting Authorization header will be:

Authorization: Basic dXNlcjE6cGFzczE=

For more information, please refer to https://en.wikipedia.org/wiki/Basic_access_authentication.