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 all Brand Boards for a specific account
GET https://services.leadconnectorhq.com/brand-boards/{locationId}
Autorizacion
Bearer token generado desde el portal Leadway. Ver Autenticacion.
Version
string
default:"2021-07-28"
required
Version de la API.
Path parameters
Query parameters
Maximum number of brand boards to return
Number of brand boards to skip for pagination
search
string
default:"brandboard"
Search term to filter brand boards by name
Include deleted brand boards in results
Respuestas
Array of brand boards for the account
_id
string
default:"507f1f77bcf86cd799439011"
required
Brand board ID
name
string
default:"My Brand Board"
required
Brand board name
updatedAt
string
default:"2024-01-05T12:00:00.000Z"
required
Last update timestamp
Whether this is the default brand board for the account
Metadata about the brand board
totalCount
number
default:"42"
required
Total number of brand boards matching the query
{
"brandBoards": [
{
"_id": "507f1f77bcf86cd799439011",
"name": "My Brand Board",
"updatedAt": "2024-01-05T12:00:00.000Z",
"default": false
}
],
"totalCount": 42
}
403 - The token does not have access to this account
message
string
default:"The token does not have access to this account"
{
"statusCode": 403,
"message": "The token does not have access to this account"
}
422 - Unprocessable Entity
Ejemplo
curl -X GET 'https://services.leadconnectorhq.com/brand-boards/YOUR_locationId' \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Version: 2021-07-28'