Claude Platform Docs

Удалить файл

DeletedFile Files.Delete(parameters, cancellationToken = default)
DELETE/v1/files/{file_id}

Удалить файл

Parameters
FileDeleteParams parameters
required string fileID

ID of the File.

string workspaceID

Optional header to select the Workspace for this request. The value is a Workspace ID (for example, wrkspc_011CZkZaBF1tNoB5wlCeusgy).

Only needed for credentials that can act on more than one Workspace. A credential that belongs to a specific Workspace may omit it; if sent, it must match that Workspace.

Returns
class DeletedFile { Type; ID; }
Type Type

Deleted object type.

For file deletion, this is always "file_deleted".

required string ID

ID of the deleted file.

Удалить файл
FileDeleteParams parameters = new() { FileID = "file_id" };

var deletedFile = await client.Files.Delete(parameters);

Console.WriteLine(deletedFile);
Returns Examples
Response 200
{
  "id": "file_011CNha8iCJcU1wXNR6q4V8w",
  "type": "file_deleted"
}