Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Mutations for managing customers and API keys.
mutation { createApiKey(input: { label: "Production Backend" permissions: ["read", "write", "calculate"] }) { apiKey id prefix label permissions createdAt } }
label
permissions
mutation { revokeApiKey(id: "key_abc123") { success revokedAt } }
mutation { updateCustomer(input: { name: "Acme Sustainability BV" webhookUrl: "https://acme.com/webhooks/heychocolate" }) { id name webhookUrl updatedAt } }
name
webhookUrl