curl --request DELETE \
--url https://api.app.shinzo.ai/auth/platform_keys/{keyUuid} \
--header 'Authorization: Bearer <token>'Delete an existing platform API key.
curl --request DELETE \
--url https://api.app.shinzo.ai/auth/platform_keys/{keyUuid} \
--header 'Authorization: Bearer <token>'curl -X DELETE https://api.app.shinzo.ai/auth/platform_keys/key_abc123def456 \
-H "Authorization: Bearer <jwt_token>"
{
"message": "API key deleted successfully",
"uuid": "key_abc123def456",
"deleted_at": "2025-01-20T16:00:00Z"
}
| Code | Description |
|---|---|
200 | Key deleted successfully |
401 | Invalid or missing JWT token |
404 | Key not found |