Update a Brand Board
PATCH/brand-boards/:locationId/:id
Updates an existing Brand Board
Request
API Version
2021-04-15Location ID where the brand board exists
Brand board ID to update, retrieve, or delete
- application/json
- Body
- Example (auto)
Bodyrequired
Name of the brand board
Array of logos for the brand board
Array of colors for the brand board
Array of fonts for the brand board
Set as the default brand board for this location
Parent folder ID in media library (reserved for future use)
{
"name": "My Brandboard 2",
"logos": [
{
"url": "https://storage.googleapis.com/bucket/logos/my-logo.png",
"label": "Primary Logo",
"path": "/locations/ve9EPM428h8vShlRW1KT/logos/my-logo.png"
}
],
"colors": [
{
"hexa": "#FF5733FF",
"rgba": "rgba(255, 87, 51, 1)",
"hex": "#FF5733",
"rgb": "rgb(255, 87, 51)",
"label": "Brand Orange"
}
],
"fonts": [
{
"font": "Montserrat",
"fallback": "sans-serif",
"label": "Heading Font"
}
],
"default": true,
"parentId": "507f1f77bcf86cd799439011"
}
Success
- application/json
- Schema
- Example (auto)
Schema
Brand board ID
Location ID
Brand board name
Array of logos
Array of brand colors
Array of brand fonts
Whether this is the default brand board for the location
Whether the brand board has been soft deleted
Parent folder ID in media library
Media library folder ID for this brand board
Original brand board ID if cloned from snapshot
Metadata about the brand board
Assets that used fallbacks/defaults (only returned when creating from URL)
Creation timestamp
Last update timestamp
{
"_id": "507f1f77bcf86cd799439011",
"locationId": "ve9EPM428h8vShlRW1KT",
"name": "My Brand Board",
"logos": [
{
"url": "https://storage.googleapis.com/bucket/logos/my-logo.png",
"label": "Primary Logo",
"path": "/locations/ve9EPM428h8vShlRW1KT/logos/my-logo.png"
}
],
"colors": [
{
"hexa": "#FF5733FF",
"rgba": "rgba(255, 87, 51, 1)",
"hex": "#FF5733",
"rgb": "rgb(255, 87, 51)",
"label": "Brand Orange"
}
],
"fonts": [
{
"font": "Montserrat",
"fallback": "sans-serif",
"label": "Heading Font"
}
],
"default": false,
"deleted": false,
"parentId": "507f1f77bcf86cd799439011",
"folderId": "507f1f77bcf86cd799439011",
"originId": "507f1f77bcf86cd799439011",
"meta": {
"updatedBy": "user_abc123",
"lastAction": "UPDATE",
"sourceId": "507f1f77bcf86cd799439011",
"sourceType": "blank"
},
"missingAssets": {
"logos": [
"Footer"
],
"fonts": [
"Arial"
],
"colors": []
},
"createdAt": "2024-01-05T12:00:00.000Z",
"updatedAt": "2024-01-05T12:00:00.000Z"
}