Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.leadwaycrm.com/llms.txt

Use this file to discover all available pages before exploring further.

Retrieves a specific Brand Board by its ID
GET https://services.leadconnectorhq.com/brand-boards/{locationId}/{id}

Autorizacion

Authorization
string
required
Bearer token generado desde el portal Leadway. Ver Autenticacion.
Version
string
default:"2021-07-28"
required
Version de la API.

Path parameters

locationId
string
default:"ve9EPM428h8vShlRW1KT"
required
Account ID where the brand board exists
id
string
default:"507f1f77bcf86cd799439011"
required
Brand board ID to update, retrieve, or delete

Respuestas

_id
string
default:"507f1f77bcf86cd799439011"
required
Brand board ID
locationId
string
default:"ve9EPM428h8vShlRW1KT"
required
Account ID
name
string
default:"My Brand Board"
required
Brand board name
logos
object[]
Array of logos
colors
object[]
Array of brand colors
fonts
object[]
Array of brand fonts
default
boolean
default:"False"
required
Whether this is the default brand board for the account
deleted
boolean
default:"False"
required
Whether the brand board has been soft deleted
parentId
string
default:"507f1f77bcf86cd799439011"
Parent folder ID in media library
folderId
string
default:"507f1f77bcf86cd799439011"
Media library folder ID for this brand board
originId
string
default:"507f1f77bcf86cd799439011"
Original brand board ID if cloned from snapshot
meta
object
Metadata about the brand board
createdAt
string
default:"2024-01-05T12:00:00.000Z"
Creation timestamp
updatedAt
string
default:"2024-01-05T12:00:00.000Z"
Last update timestamp
{
  "_id": "507f1f77bcf86cd799439011",
  "locationId": "ve9EPM428h8vShlRW1KT",
  "name": "My Brand Board",
  "logos": [
    {
      "id": "logo_abc123",
      "url": "https://storage.googleapis.com/bucket/logos/my-logo.png",
      "label": "Primary Logo",
      "path": "/locations/ve9EPM428h8vShlRW1KT/logos/my-logo.png"
    }
  ],
  "colors": [
    {
      "id": "color_xyz789",
      "hexa": "#FF5733FF",
      "rgba": "rgba(255, 87, 51, 1)",
      "hex": "#FF5733",
      "rgb": "rgb(255, 87, 51)",
      "label": "Brand Orange"
    }
  ],
  "fonts": [
    {
      "id": "font_def456",
      "font": "Montserrat",
      "fallback": "sans-serif",
      "label": "Heading Font"
    }
  ],
  "default": false,
  "deleted": false,
  "parentId": "507f1f77bcf86cd799439011",
  "folderId": "507f1f77bcf86cd799439011",
  "originId": "507f1f77bcf86cd799439011",
  "createdAt": "2024-01-05T12:00:00.000Z",
  "updatedAt": "2024-01-05T12:00:00.000Z"
}
{}
{}
statusCode
number
default:"403"
message
string
default:"The token does not have access to this account"
{
  "statusCode": 403,
  "message": "The token does not have access to this account"
}
statusCode
number
default:"404"
message
string
default:"Not Found"
error
string
default:"The requested resource was not found"
{
  "statusCode": 404,
  "message": "Not Found",
  "error": "The requested resource was not found"
}
{}

Ejemplo

curl -X GET 'https://services.leadconnectorhq.com/brand-boards/YOUR_locationId/YOUR_id' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'Version: 2021-07-28'