← Dashboard / Admin: API Keys
Generate New API Key

Scope: read = GET only; read_write = create/comment/close.

Existing API Keys
Name Key Prefix Scope Created By Created Expires Last Used Status Actions
No API keys found. Generate one above.
Active Revoked
1) : ?>
API Usage

Include the API key in your requests using the Authorization header:

HTTP HEADER
Authorization: Bearer YOUR_API_KEY

Example — create a ticket via cURL:

CURL
curl -X POST https://your-instance/create_ticket_api.php \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"title":"My ticket","category":"General","type":"Issue","priority":3}'

API keys provide programmatic access to create and manage tickets. Keep keys secure and rotate them regularly.