> ## Documentation Index
> Fetch the complete documentation index at: https://docs.interchange.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete creative manifest

> Remove a creative manifest and all its assets

`DELETE /api/v2/buyer/campaigns/{campaignId}/creatives/{creativeId}`

Deletes a creative manifest and all of its assets from the campaign. Returns `204 No Content` on success.

## Request

```bash theme={null}
curl -X DELETE https://api.interchange.io/api/v2/buyer/campaigns/cmp_987654321/creatives/cm_abcdef \
  -H "Authorization: Bearer $SCOPE3_API_KEY"
```

## Parameters

| Field        | Type   | Required | Notes                             |
| ------------ | ------ | -------- | --------------------------------- |
| `campaignId` | string | Yes      | Path param — owning campaign      |
| `creativeId` | string | Yes      | Path param — creative manifest ID |

## Response

`204 No Content` — the response body is empty. The manifest and its assets are removed; deleting a synced manifest also withdraws it from the media buys it propagated to.

## Errors

* `404 NOT_FOUND` — `campaignId` or `creativeId` does not exist or is not visible to the authenticated account.

See [Errors](/v2/reference/errors) for the full error contract.

## Related

<CardGroup cols={2}>
  <Card title="Creative overview" href="/v2/object-guides/creative" icon="image">
    Manifest lifecycle and propagation
  </Card>

  <Card title="Get creative manifest" href="/v2/buyer/creatives/tasks/get-creative-manifest" icon="magnifying-glass">
    Confirm the manifest before deleting
  </Card>

  <Card title="List creative manifests" href="/v2/buyer/creatives/tasks/list-creative-manifests" icon="list">
    Browse remaining manifests
  </Card>
</CardGroup>
