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>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "price": 123,
  "customFields": {},
  "description": "<string>",
  "externalId": "<string>"
}

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.

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.