Claude Platform Docs

To enable the Compliance API, see the setup guide.

Set up the Compliance API

Projekt löschen

DELETE/v1/compliance/apps/projects/{project_id}

Löscht ein Projekt zu Compliance-Zwecken.

Löscht das Projekt und alle zugehörigen Daten endgültig (Hard-Delete), einschließlich:

  • Alle Projektdokumente und -dateien
  • Alle Rollenzuweisungen
  • Wissensdatenbank (falls RAG aktiviert ist)
  • Sync-Quellen

Dem Projekt dürfen keine Chats zugeordnet sein – gibt 409 zurück, wenn Chats vorhanden sind.

Path parameters
project_id: string

The project ID (tagged ID, e.g., claude_proj_abc123)

Headers
"x-api-key": optional string
Returns
id: string

The ID of the Claude project that was deleted

type: optional "claude_project_deleted"

Constant string confirming deletion.

defaultclaude_project_deleted
Projekt löschen
cURL
curl https://api.anthropic.com/v1/compliance/apps/projects/$PROJECT_ID \
    -X DELETE \
    -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
Returns Examples
Response 200
{
  "id": "id",
  "type": "claude_project_deleted"
}