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

Path Parameters

id
string
required

Body

application/json
name
string

The name of the product.

description
string

The description of the product.

price
number

The price of the product.

externalId
string

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

customFields
object

Response

200 - 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.