Claude Platform Docs

プロジェクトの削除

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

コンプライアンス目的でプロジェクトを削除します。

プロジェクトおよび以下を含むすべての関連データを完全削除します。

  • すべてのプロジェクトドキュメントとファイル
  • すべてのロール割り当て
  • ナレッジベース(RAG が有効な場合)
  • 同期ソース

プロジェクトにチャットが紐付いていない必要があります。チャットが存在する場合は 409 を返します。

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
プロジェクトの削除
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"
}