Skip to content
Log in Request a demo

Getting Started

To start using the API, complete a few setup steps in Skailer and obtain an access token.

  1. Create a dedicated user in the Skailer interface.
  2. Assign the required permissions based on your use case.
  3. Set a password for this user.

Use POST /api/v1/employees/login to obtain a token.

POST https://<ApiDomain />/api/v1/employees/login
Content-Type: application/x-www-form-urlencoded
username=your_email&password=your_password

Example response:

{
"access_token": "eyJhbG...",
"token_type": "bearer"
}

All subsequent requests must include the Authorization header:

Authorization: Bearer <your_access_token>

You can verify the current token via:

GET /api/v1/employees/check-token

The method returns true if the token is valid.