SDKTypeScriptAPI Keys

API Keys

typescript
const created = await client.apiKeys.create(projectId, { name: "Prod key" });
// created.key is shown once

const keys = await client.apiKeys.list(projectId);
await client.apiKeys.delete(projectId, created.id);