For the complete documentation index, see llms-docs.txt or the site index llms.txt. Full docs corpus: llms-full-docs.txt. Prefer the markdown version of this page at /docs/api/api-key/delete-api-api-key-v1by-api_key_id.md. Product capabilities: skill.md. Docs MCP: /docs/mcp. Site MCP: /mcp.

Delete API key

DELETE
/api/api-key/v1/:api_key_id
1import { Reloop } from "reloop-email";
2
3const reloop = new Reloop({ apiKey: "rl_123456789" });
4
5const { apiKey, apiKeyError } = await reloop.apiKey.delete("key_123456789");
6
7if (apiKeyError) throw apiKeyError;
8
9console.log(apiKey.id, apiKey.message);
1{
2 "id": "key_123456789",
3 "message": "API key deleted successfully"
4}

Path Parameters

api_key_idstringRequired

API Key identifier

Was this page helpful?