Delete Provider Key
curl --request DELETE \
--url https://api.app.shinzo.ai/auth/provider_keys/:keyUuid \
--header 'Authorization: Bearer <token>'Provider Keys
Delete Provider Key
Delete a stored AI provider API key.
DELETE
/
auth
/
provider_keys
/
:keyUuid
Delete Provider Key
curl --request DELETE \
--url https://api.app.shinzo.ai/auth/provider_keys/:keyUuid \
--header 'Authorization: Bearer <token>'Delete Provider Key
Permanently delete an AI provider API key from your account.Authentication
Requires JWT token authentication.string
required
The UUID of the key to delete
Example Request
curl -X DELETE https://api.app.shinzo.ai/auth/provider_keys/pk_abc123def456 \
-H "Authorization: Bearer <jwt_token>"
Response
{
"message": "Provider key deleted successfully",
"uuid": "pk_abc123def456",
"deleted_at": "2025-01-20T16:00:00Z"
}
Status Codes
| Code | Description |
|---|---|
200 | Key deleted successfully |
401 | Invalid or missing JWT token |
404 | Key not found |
This action is permanent and cannot be undone. Any services using this key will lose access to the provider API.

