---
canonical: https://amplience.com/developers/docs/release-notes/2024/unpublish-content-enhancements/
title: Unpublish content enhancements
description: This release includes enhancements to the unpublish content feature, including unpublished on archive and updated webhooks
audience: Business User
image: https://cdn.media.amplience.net/i/ampproduct/unpublish-on-archive-1?w=1200&h=630
image_width: 1200
image_height: 630
date_published: 2024-05-21
date_modified: 2026-05-28
---

# Unpublish content- enhancements

**Release date: 22nd May 2024**

This release includes enhancements to the [unpublish content](https://amplience.com/developers/docs/user-guides/produce-content/publish/#unpublishing-content) feature, including the ability for users to unpublish content at the same time as it's archived. For developers we've updated our webhook payloads to include information to allow you to tell if a webhook was triggered by an item being unpublished.

## Unpublishing on archive

You can now choose to unpublish a content item at the same time as you archive it. Just select a single content item, archive it and click the "Unpublish and archive" button on the dialog displayed. The item will then be unpublished and moved to the archive.

![When you archive a content item you will be asked if you want to unpublish it](https://cdn.media.amplience.net/i/ampproduct/unpublish-on-archive-1?w=1880&fmt=png 'When you archive a content item you will be asked if you want to unpublish it')

> **Note:** You only have the option to unpublish on archive when you archive a single item.

## Webhoook triggered on unpublish

The ["content item- updated"](https://amplience.com/developers/docs/integrations/webhooks/webhooks-overview/#creating-a-webhook) webhook is triggered when a content item is updated (including when it's archived or published), and will now also be triggered when an item is unpublished.

We've added some fields to the [webhook payload](https://amplience.com/developers/docs/integrations/webhooks/payloads/#content-item-updated) including publishing status. You can add a [filter](https://amplience.com/developers/docs/integrations/webhooks/customize/#filters) to a webhook to perform an action, such as deleting the item from an Algolia index, when an item is unpublished:

```
$.payload.publishingStatus Equals UNPUBLISHED
```

In most cases you would also filter on the content type and other attributes.

An example of a webhook set up to trigger when an item is unpublished is shown below.

![The content item- updated webhook is triggered when the content is unpublished](https://cdn.media.amplience.net/i/ampproduct/content-item-updated-webhook-3?w=1880&fmt=png 'The content item- updated webhook is triggered when the content is unpublished')

## Content now unpublished from all delivery APIs

In the previous release, content was only unpublished from the [HTTP Content Delivery](https://amplience.com/developers/docs/apis/content-delivery/content-delivery-overview/#unpublishing-content) and [GraphQL Content Delivery](https://amplience.com/developers/docs/apis/content-delivery-graphql/overview/) APIs.

Content is now also unpublished from the original (legacy) [Content Delivery API](https://amplience.com/developers/docs/apis/content-delivery/legacy-content-delivery/) and [Content Rendering Service](https://amplience.com/developers/docs/apis/content-rendering-service/).

## Related pages

[Unpublishing content](https://amplience.com/developers/docs/user-guides/produce-content/publish/#unpublishing-content)

[Content delivery- unpublishing content](https://amplience.com/developers/docs/apis/content-delivery/content-delivery-overview/#unpublishing-content)

[Webhook payloads](https://amplience.com/developers/docs/integrations/webhooks/payloads/#content-item-updated)

[Webhook overview](https://amplience.com/developers/docs/integrations/webhooks/webhooks-overview/#creating-a-webhook)

[Customizable webhooks](https://amplience.com/developers/docs/integrations/webhooks/customize/#filters)
