---
title: "Remove one creator from the shop's do-not-contact list"
method: DELETE
path: "/shops/blacklist/{creator}"
tags: ["Targets & Blacklist"]
---

# Remove one creator from the shop's do-not-contact list

`DELETE /shops/blacklist/{creator}`

Un-blacklist a single creator by handle, making them eligible for outreach again.

The handle is normalized the same way as on add, so `@Creator` and `creator` both resolve to the same entry. A handle that is not on this shop's list returns 404 — this route is not a silent no-op, so a typo surfaces instead of being mistaken for a successful removal. To empty the whole list use `POST /shops/blacklist/clear`.

Requires a key with `read_write` scope and a single shop.

## Path parameters

- `creator` string, required — Creator handle to un-blacklist; a leading `@` is optional.

## Response `200`

Successful Response

- BlacklistRemoveResponse — Outcome of a remove.
  - `removed_count` integer, required — Rows deleted from the list.
  - `creator` string, required — Normalized handle that was removed.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/reacherapp/apis/reacher-data-api.md) · [All operations](https://skmtc.dev/reacherapp/apis/reacher-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/reacherapp/reacher-data-api/revisions/5eefff009b5b/schema)
