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
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { attachmentId: string; propertyId: number; } | - |
parameters.attachmentId | string | The ID of the attachment the property belongs to. |
parameters.propertyId | number | The ID of the property to be deleted. |
Returns
Promise<void>