POST
/
products
/
:id
curl --request POST \
  --url https://base_url/api/v1/products/:id \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "SunShield Pro UV-Blocking Sunglasses",
  "tax_code": "TPP",
  "description": "<string>"
}'
{
  "message": "Successfully updated product."
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Create product response.

The response is of type object.