PUT
/
api
/
v3
/
products
/
{vendorId}
curl --request PUT \
  --url https://api.artisn.desarrollo-redbrand.com/api/api/v3/products/{vendorId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "storeId": "<string>",
  "productId": "<string>",
  "active": true,
  "priceInfo": {
    "price": 123,
    "pointPrice": 123
  },
  "scheduledActiveStatus": "2023-11-07T05:31:56Z",
  "scheduledInactiveStatus": "2023-11-07T05:31:56Z"
}'
{
  "message": "Product updated successfully"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

vendorId
integer
required

Unique brand identifier

Body

application/json

Response

200
application/json

Product information successfully updated

The response is of type object.