Skip to content
AdCrunch
Esc
navigateopen⌘Jpreview

Detach an advertiser

Detaches an ad account from a Brand.

DELETE/context/brands/{slug}/advertisers/{advertiserId}
Authorization
AuthorizationBearer token · headerrequired

Send Authorization: Bearer <credential>. Two credentials work.

An API key (acr_…) is what a server integration uses. Create one in the AdCrunch console under Settings → API keys — see https://docs.adcrunch.dev/account/api-keys. A key is bound to the organization that was active when you created it, and it keeps acting on that organization whatever you do later. It carries the permissions of the member who created it.

A session issued by the AdCrunch sign-in flow also works, which is how the console calls this service from the browser.

Either way the organization comes from the credential. There is no organization parameter.

Path parameters
advertiserIdstringrequired
matches ^acc_[\s\S]{0,}$
slugstringrequired
Responses
204

Detached. Unlike everything else here the link is hard-deleted: it has no content to preserve, and a tombstone would permanently occupy the only key that pair could use.

401

No credential, or one that does not resolve. Send an API key or a session. See the security scheme. error is unauthorized.

errorstringrequired

A stable code for the failure. This is the field to branch on. It does not change for a given failure.

Allowed:unauthorized
messagestringrequired

A sentence to show a person. Written to say what to do next. Reworded whenever it can be said better, so never branch on it.

403

The caller does not hold brand:write. error is forbidden.

errorstringrequired

A stable code for the failure. This is the field to branch on. It does not change for a given failure.

Allowed:forbidden
messagestringrequired

A sentence to show a person. Written to say what to do next. Reworded whenever it can be said better, so never branch on it.

404

error tells the two apart. not_found: no Brand with that slug. not_attached: the Brand exists and that account was never attached to it.

errorstringrequired

A stable code for the failure. This is the field to branch on. It does not change for a given failure.

messagestringrequired

A sentence to show a person. Written to say what to do next. Reworded whenever it can be said better, so never branch on it.

422

That ad account is not connected to this organization. error is advertiser_not_owned.

errorstringrequired

A stable code for the failure. This is the field to branch on. It does not change for a given failure.

messagestringrequired

A sentence to show a person. Written to say what to do next. Reworded whenever it can be said better, so never branch on it.

Request
curl -X DELETE "https://api.adcrunch.dev/context/brands/string/advertisers/string" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
Detached. Unlike everything else here the link is **hard-deleted**: it has no content to preserve, and a tombstone would permanently occupy the only key that pair could use.