PUT
/
v1
/
products
/
{product_id}
Update Product
curl --request PUT \
  --url https://sandbox.api.withgale.com/v1/v1/products/{product_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "upc": "<string>",
  "gtin": "<string>",
  "category": "<string>",
  "description": "<string>",
  "external_id": "<string>"
}'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

product_id
string
required

Body

application/json

Response

200 - application/json

Product updated

The response is of type object.