API V2 Documentation - AbracadaRoom

Authentication

Calls requiring authentication expect an HTTP header Authorization including either a token, or a username / password combination, in the following format:

Test account

A test account is available:

  • Username: demo
  • Password: test
  • Token: F8CpmeDJ8yzqk8fejF0cG5Ls7ren

Authentication via token

Authorization: Bearer your_api_token
or
Authorization: Token your_api_token

Authentification via username / password

Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=

In this example, dXNlcm5hbWU6cGFzc3dvcmQ= corresponds to 'username:password' encoded in base64.

You can also use the username / password combination via -u cURL, or via auth Guzzle.