Skip to content

Function: deleteAttachmentPropertyById()

ts
function deleteAttachmentPropertyById(client, parameters): Promise<void>;

Defined in: src/v2/api/contentProperties.ts:345

Deletes a content property for an attachment by its id.

Permissions required: Permission to attachment the page.

Parameters

ParameterTypeDescription
clientClient-
parameters{ attachmentId: string; propertyId: number; }-
parameters.attachmentIdstringThe ID of the attachment the property belongs to.
parameters.propertyIdnumberThe ID of the property to be deleted.

Returns

Promise&lt;void>