Claude Platform Docs

To enable the Compliance API, see the setup guide.

Set up the Compliance API

Eliminar archivo

DELETE/v1/compliance/apps/chats/files/{claude_file_id}

Elimina permanentemente un archivo específico. Esta es una operación destructiva que no se puede deshacer.

Path parameters
claude_file_id: string

The file ID (tagged ID, e.g., claude_file_abc123)

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

The ID of the file that was deleted

type: optional "claude_file_deleted"

Constant string confirming deletion

defaultclaude_file_deleted
Eliminar archivo
cURL
curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID \
    -X DELETE \
    -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
Returns Examples
Response 200
{
  "id": "claude_file_xyz789",
  "type": "claude_file_deleted"
}