Skip to main content
POST
/
brands
Create Brand
curl --request POST \
  --url https://app.autoposting.ai/api-proxy/brands \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Acme Corp",
  "slug": "acme-corp",
  "description": "Official Acme brand",
  "logoUrl": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": "brand_01HXYZ",
    "name": "Acme Corp",
    "slug": "acme-corp",
    "description": "Official Acme brand",
    "logoUrl": null,
    "order": 0,
    "connectedPlatforms": [
      "x",
      "linkedin"
    ],
    "createdAt": "2024-01-01T00:00:00Z",
    "updatedAt": "2024-01-01T00:00:00Z"
  }
}

Authorizations

Authorization
string
header
required

API key as Authorization: Bearer sk-social-...

Body

application/json
name
string
required

Display name for the brand.

Example:

"Acme Corp"

slug
string
required

URL-safe identifier for the brand. Must be unique within the organization. Used in all brand-scoped API calls.

Example:

"acme-corp"

description
string

Optional description of the brand.

Example:

"Official Acme brand"

logoUrl
string

URL to the brand's logo image.

Response

Brand created.

success
boolean
required
Example:

true

data
object
required

A brand maps to a set of social media accounts.