Getting Started
To start using the API, complete a few setup steps in Skailer and obtain an access token.
1. Prepare a user
Section titled “1. Prepare a user”- Create a dedicated user in the Skailer interface.
- Assign the required permissions based on your use case.
- Get API token in System settings interface
2. Use the token
Section titled “2. Use the token”All subsequent requests must include the Authorization header:
Authorization: Bearer <your_access_token>3. Validate the token
Section titled “3. Validate the token”You can verify the current token via:
GET /api/v1/employees/check-tokenThe method returns true if the token is valid.