Create a Brand
Creates a Brand in your organization. Every narrative section is optional, because you write a Brand one part at a time. AdCrunch makes the slug from the name. To set a different slug, send one. The answer is 409 if the slug already exists in your organization.
/context/brands/AuthorizationBearer token · headerrequiredSend 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.
application/jsondescriptionstringrequiredOne-line summary — what agents read to pick this Brand.
guidelinesstringDo's and don'ts, guardrails, claims to avoid (markdown).
identitystringWho the brand is: positioning, mission, offering (markdown).
messagingstringKey messages, value propositions, proof points (markdown).
namestringrequiredDisplay name.
slugstringOptional explicit slug handle; normalized to kebab-case. Defaults to one derived from the name.
voicestringTone of voice and personality (markdown).
website_urlstring<uri>The Brand's public site — a locator like the slug, not a section. Setting it does nothing on its own; reading it is a separate, explicit call.
The Brand as created. Every unwritten section comes back null, which is a normal state rather than an error.
createdAtnumberrequiredMilliseconds since the Unix epoch, UTC.
createdBystringrequireddescriptionstringrequiredguidelinesstring | nullrequiredDo’s and don’ts, claims to avoid.
idstringrequiredidentitystring | nullrequiredPositioning, mission, what is on offer.
logoDocumentIdstring | nullrequiredThe Document this Brand nominates as its logo.
messagingstring | nullrequiredKey messages, value propositions, proof points.
namestringrequiredrevisionnumberrequiredIncrements on every write. Send it back as base_revision to edit; a stale one answers 409.
slugstringrequiredupdatedAtnumber | nullrequiredMilliseconds since the Unix epoch, UTC.
voicestring | nullrequiredTone and personality.
websiteUrlstring | nullrequiredThe brand’s public site. A locator only — its contents are not stored.
No credential, or one that does not resolve. Send an API key or a session. See the security scheme. error is unauthorized.
errorstringrequiredA stable code for the failure. This is the field to branch on. It does not change for a given failure.
unauthorizedmessagestringrequiredA sentence to show a person. Written to say what to do next. Reworded whenever it can be said better, so never branch on it.
The caller does not hold brand:write. error is forbidden.
errorstringrequiredA stable code for the failure. This is the field to branch on. It does not change for a given failure.
forbiddenmessagestringrequiredA sentence to show a person. Written to say what to do next. Reworded whenever it can be said better, so never branch on it.
Another Brand in this organization already holds that slug. error is slug_conflict. A Skill may share it — each aggregate is addressed through its own surface.
slugstringrequiredThe slug that is already taken.
errorstringrequiredA stable code for the failure. This is the field to branch on. It does not change for a given failure.
slug_conflictmessagestringrequiredA sentence to show a person. Written to say what to do next. Reworded whenever it can be said better, so never branch on it.
The name and slug together contain no letter or digit. error is invalid_slug.
errorstringrequiredA stable code for the failure. This is the field to branch on. It does not change for a given failure.
messagestringrequiredA sentence to show a person. Written to say what to do next. Reworded whenever it can be said better, so never branch on it.