API Authentication & Quickstart
Welcome to our REST API documentation! Our API is organized around REST. All requests are authenticated via a bearer token.
1. Obtaining a Token
Go to **Admin Panel** > **Settings** > **API Keys** and click **Generate Token**. Keep this token secure, as it has write access to your helpdesk properties.
2. Send Your First Request
bash
curl -X GET "https://api.helpdesk.local/v1/tickets" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"