> ## 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.

# Unsubscribe directed campaigns (alpha)

> Stop account mirroring and retire local campaign mirrors

<Warning>
  Alpha. Unsubscribe does not delete or change campaigns in the connected
  seller platform.
</Warning>

Pauses the account subscription, stops future mirror sweeps, and retires its
local directed campaign shells and media buys.

**Named operation:** `unsubscribe_directed_campaigns`

| Field          | Location | Type    | Required | Description                 |
| -------------- | -------- | ------- | -------- | --------------------------- |
| `connectionId` | path     | integer | Yes      | Adapter connection ID       |
| `accountId`    | path     | integer | Yes      | Connected ad-account row ID |

The response contains the archived subscription and the number of mirrors
retired. The operation remains available when directed-campaign exposure is
off, so removing access cannot leave an active mirror subscription stranded.

## Response

```json theme={null}
{
  "subscription": {
    "id": "17",
    "customerId": 100,
    "advertiserId": "12345",
    "connectionId": "42",
    "accountId": "81",
    "sourceId": "tiktok",
    "providerType": "tiktok",
    "status": "PAUSED",
    "backfillStart": "2025-07-12T10:00:00.000Z",
    "maxMediaBuyBudget": 100000,
    "maxAccountBudget": 500000,
    "lastSyncedAt": "2026-07-12T10:15:03.000Z",
    "lastSyncStatus": "SUCCESS",
    "lastSyncError": null,
    "createdAt": "2026-07-12T10:00:00.000Z",
    "updatedAt": "2026-07-12T11:00:00.000Z",
    "archivedAt": "2026-07-12T11:00:00.000Z"
  },
  "retired": 12
}
```

`NOT_FOUND` means no subscription exists for that connection/account in the
authenticated scope. An access error means the caller cannot operate the
mapped advertiser. Re-list mappings and subscription health rather than
guessing different IDs. Unsubscribe never changes the upstream campaigns.

See [Directed campaigns (alpha)](/v2/buyer/campaigns/directed-campaigns).
