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

# Create a product



## OpenAPI

````yaml post /v1/products
openapi: 3.0.0
info:
  title: Kinbox API
  description: Kinbox public API
  version: '2.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/products:
    post:
      tags:
        - v1Products
      summary: Create a product
      operationId: createProduct
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateProductPublicDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductPublicDto'
components:
  schemas:
    CreateProductPublicDto:
      type: object
      properties:
        name:
          type: string
          description: The name of the product.
        description:
          type: string
          description: The description of the product.
        price:
          type: number
          description: The price of the product.
        externalId:
          type: string
          description: >-
            The external id of the product that can be used to sync with other
            systems.
        isActive:
          type: boolean
          default: true
          description: >-
            Whether the product is active and selectable in CRM deals. Inactive
            products are hidden from regular members but preserved for sales
            history.
        customFields:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/CustomFieldPlaceholder'
          properties: {}
      required:
        - name
        - price
        - customFields
    ProductPublicDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
          description: The name of the product.
        description:
          type: string
          description: The description of the product.
        price:
          type: number
          description: The price of the product.
        externalId:
          type: string
          description: >-
            The external id of the product that can be used to sync with other
            systems.
        isActive:
          type: boolean
          default: true
          description: >-
            Whether the product is active and selectable in CRM deals. Inactive
            products are hidden from regular members but preserved for sales
            history.
        customFields:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/CustomFieldPlaceholder'
          properties: {}
      required:
        - id
        - name
        - price
        - customFields
    CustomFieldPlaceholder:
      type: object
      properties:
        value:
          type: string
        type:
          type: string
      required:
        - value
        - type

````