Skip to main content

Delete Attachment Operation

This operation is used to delete an attachment from a document.

Syntax

public DeleteAttachmentOperation(string documentId, string name, string changeVector = null)
Parameter
documentIdstringID of a document containing an attachment
namestringName of an attachment
changeVectorstringEntity changeVector, used for concurrency checks (null to skip check)

Example

store.Operations.Send(new DeleteAttachmentOperation("orders/1-A", "invoice.pdf"));