Claude Platform Docs

To enable the Compliance API, see the setup guide.

Set up the Compliance API

프로젝트 삭제

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"
}