Skip to content

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

ParameterTypeDescription
clientClient-
parameters{ blogpostId: number; propertyId: number; }-
parameters.blogpostIdnumberThe ID of the blog post the property belongs to.
parameters.propertyIdnumberThe ID of the property to be deleted.

Returns

Promise&lt;void>