`POST /apps` — provision a fresh app and issue its first key in a single round trip.
/appsRequest Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
POST /apps body.
Response Body
application/json
curl -X POST "https://example.com/apps" \ -H "Content-Type: application/json" \ -d '{ "name": "string" }'{ "created_at": "string", "description": "string", "email": "string", "id": "string", "name": "string", "owner_user_id": "string", "published": true, "required_permissions": [ "string" ], "role": "owner", "team_ids": [ "string" ]}`PUT /alerts/system-destinations` — replace the stored destination ids. The stored setting comes back. PUT
Previous Page
`DELETE /apps/{id}` — soft-delete + cascade revoke every key the app holds. The row stays for audit; the extractor rejects api-key auth against revoked keys, and the app's `status = "inactive"` is the operator-visible state in the admin UI. DELETE
Next Page