> ## Documentation Index
> Fetch the complete documentation index at: https://help.hoopai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Brand Board

> Permanently deletes a brand board by its ID.



## OpenAPI

````yaml /api-reference/brand-boards/openapi.json delete /brand-boards/{brandBoardId}
openapi: 3.0.0
info:
  title: Brand Boards API
  description: >-
    Documentation for Brand Boards API — create, retrieve, update, and delete
    brand boards that store brand colors, fonts, and logos for a location.
  version: '1.0'
  contact: {}
servers:
  - url: https://services.leadconnectorhq.com
security: []
tags:
  - name: Brand Boards
    description: Manage brand boards containing colors, fonts, and logos
paths:
  /brand-boards/{brandBoardId}:
    delete:
      tags:
        - Brand Boards
      summary: Delete Brand Board
      description: Permanently deletes a brand board by its ID.
      operationId: delete-brand-board
      parameters:
        - name: Version
          in: header
          description: API Version
          required: true
          schema:
            type: string
            enum:
              - '2021-07-28'
        - name: brandBoardId
          in: path
          description: The unique identifier for the brand board to delete
          required: true
          schema:
            type: string
            example: bb_abc123def456
      responses:
        '200':
          description: Brand board deleted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeleteBrandBoardResponseDTO'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestDTO'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedDTO'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundDTO'
        '422':
          description: Unprocessable Entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnprocessableDTO'
      security:
        - bearer: []
components:
  schemas:
    DeleteBrandBoardResponseDTO:
      type: object
      properties:
        success:
          type: boolean
          description: Whether the deletion was successful
          example: true
        message:
          type: string
          description: Deletion confirmation message
          example: Brand board deleted successfully
    BadRequestDTO:
      type: object
      properties:
        statusCode:
          type: number
          example: 400
        message:
          type: string
          example: Bad Request
    UnauthorizedDTO:
      type: object
      properties:
        statusCode:
          type: number
          example: 401
        message:
          type: string
          example: 'Invalid token: access token is invalid'
        error:
          type: string
          example: Unauthorized
    NotFoundDTO:
      type: object
      properties:
        statusCode:
          type: number
          example: 404
        message:
          type: string
          example: Not found
        error:
          type: string
          example: Not Found
    UnprocessableDTO:
      type: object
      properties:
        statusCode:
          type: number
          example: 422
        message:
          type: array
          items:
            type: string
          example:
            - Unprocessable Entity
        error:
          type: string
          example: Unprocessable Entity
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Use the Access Token generated with user type as Sub-Account (OR)
        Private Integration Token of Sub-Account.
      type: http

````