> ## 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 property list

> Archive a property list and unlink it from the advertiser targeting profile

`DELETE /api/v2/buyer/advertisers/{advertiserId}/property-lists/{listId}`

Archives a property list and unlinks it from the advertiser's targeting profile. The list stops shaping future product discovery and media buys.

## Request

<CodeGroup>
  ```bash curl theme={null}
  curl -X DELETE https://api.interchange.io/api/v2/buyer/advertisers/12345/property-lists/42 \
    -H "Authorization: Bearer $SCOPE3_API_KEY"
  ```
</CodeGroup>

## Parameters

| Field          | Type   | Required | Notes                              |
| -------------- | ------ | -------- | ---------------------------------- |
| `advertiserId` | string | Yes      | Path. Owning advertiser            |
| `listId`       | string | Yes      | Path. The property list to archive |

## Response

`204 No Content` — no response body. The list is archived.

## Errors

* `404 NOT_FOUND` — `listId` or `advertiserId` 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="Property list tasks" href="/v2/buyer/property-lists/tasks" icon="list-check">
    All property list operations
  </Card>

  <Card title="Property Lists guide" href="/v2/guides/property-lists" icon="list">
    Identifier types, resolution, and concepts
  </Card>

  <Card title="List property lists" href="/v2/buyer/property-lists/tasks/list-property-lists" icon="list">
    All lists for an advertiser
  </Card>

  <Card title="Create property list" href="/v2/buyer/property-lists/tasks/create-property-list" icon="plus">
    Create an include or exclude list
  </Card>
</CardGroup>
