Skip to main content
PUT
/
brand-boards
/
{brandBoardId}
Update Brand Board
curl --request PUT \
  --url https://services.leadconnectorhq.com/brand-boards/{brandBoardId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Version: <version>' \
  --data '
{
  "name": "Updated Brand Identity",
  "locationId": "ve9EPM428h8vShlRW1KT",
  "colors": [
    {
      "name": "Primary Blue",
      "hex": "#1A73E8"
    }
  ],
  "fonts": [
    {
      "name": "Inter",
      "url": "https://fonts.googleapis.com/css2?family=Inter"
    }
  ],
  "logos": [
    {
      "name": "Primary Logo",
      "url": "https://storage.example.com/logos/primary-logo.png"
    }
  ]
}
'
{
  "brandBoard": {
    "id": "bb_abc123def456",
    "locationId": "ve9EPM428h8vShlRW1KT",
    "name": "Main Brand Identity",
    "colors": [
      {
        "name": "Primary Blue",
        "hex": "#1A73E8"
      }
    ],
    "fonts": [
      {
        "name": "Inter",
        "url": "https://fonts.googleapis.com/css2?family=Inter"
      }
    ],
    "logos": [
      {
        "name": "Primary Logo",
        "url": "https://storage.example.com/logos/primary-logo.png"
      }
    ],
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Headers

Version
enum<string>
required

API Version

Available options:
2021-07-28

Path Parameters

brandBoardId
string
required

The unique identifier for the brand board

Example:

"bb_abc123def456"

Body

application/json
name
string

Updated name of the brand board

Example:

"Updated Brand Identity"

locationId
string

Location ID

Example:

"ve9EPM428h8vShlRW1KT"

colors
object[]

Updated array of brand colors

fonts
object[]

Updated array of brand fonts

logos
object[]

Updated array of brand logos

Response

Brand board updated successfully

brandBoard
object
Last modified on March 7, 2026