Skip to main content
POST
/
v1
/
products
Create a product
curl --request POST \
  --url https://api4.kinbox.com.br/v1/products \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "price": 123,
  "customFields": {},
  "description": "<string>",
  "externalId": "<string>",
  "isActive": true
}
'
{
  "id": "<string>",
  "name": "<string>",
  "price": 123,
  "customFields": {},
  "description": "<string>",
  "externalId": "<string>",
  "isActive": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required

The name of the product.

price
number
required

The price of the product.

customFields
object
required
description
string

The description of the product.

externalId
string

The external id of the product that can be used to sync with other systems.

isActive
boolean
default:true

Whether the product is active and selectable in CRM deals. Inactive products are hidden from regular members but preserved for sales history.

Response

201 - application/json
id
string
required
name
string
required

The name of the product.

price
number
required

The price of the product.

customFields
object
required
description
string

The description of the product.

externalId
string

The external id of the product that can be used to sync with other systems.

isActive
boolean
default:true

Whether the product is active and selectable in CRM deals. Inactive products are hidden from regular members but preserved for sales history.