Function: deleteBlogpostPropertyById()
ts
function deleteBlogpostPropertyById(client, parameters): Promise<void>;Defined in: src/v2/api/contentProperties.ts:449
Deletes a content property for a blogpost by its id.
Permissions required: Permission to edit the blog post.
Parameters
| Parameter | Type | Description |
|---|---|---|
client | Client | - |
parameters | { blogpostId: number; propertyId: number; } | - |
parameters.blogpostId | number | The ID of the blog post the property belongs to. |
parameters.propertyId | number | The ID of the property to be deleted. |
Returns
Promise<void>