Account
Show API code examples on this page as
API Keys
Section titled “API Keys”API keys authenticate every call you make to the Triggerware API. You’ll need at least one to use any of the endpoints documented across these pages. You can also create and manage them in the console.
List your API keys:
GET /api-keys
curl https://api.triggerware.com/api-keys \ -H "Api-Key: YOUR_API_KEY"Create a new API key. The key value is only returned once — store it somewhere safe:
PUT /api-keys
curl -X PUT https://api.triggerware.com/api-keys?name=<name> \ -H "Api-Key: YOUR_API_KEY"Delete an API key by name:
DELETE /api-keys/{name}
curl -X DELETE https://api.triggerware.com/api-keys/<name> \ -H "Api-Key: YOUR_API_KEY"Your Triggerware instance writes logs you can read through the API.
List the available log files:
GET /instance/logs
curl https://api.triggerware.com/instance/logs \ -H "Api-Key: YOUR_API_KEY"Read a specific log file:
GET /instance/logs/{name}
curl https://api.triggerware.com/instance/logs/<name> \ -H "Api-Key: YOUR_API_KEY"