API Token Management

Manage API tokens for accessing the notification API endpoints.

Create New API Token

API Tokens (0)

Loading tokens...

Usage Instructions

Using with Authorization Header:

curl -X POST https://your-domain.com/api/notifications \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"title":"Test","message":"Hello World","type":"info"}'

Using with Query Parameter:

curl -X POST "https://your-domain.com/api/notifications?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"title":"Test","message":"Hello World","type":"info"}'

⚠️ Security Notice:

Tokens are only shown once during creation. Make sure to copy and store them securely. Tokens cannot be recovered after closing the creation dialog.