Skip to main content
PUT
/
crm-objects
/
v1
/
objects
/
products
/
{id}
Delete a group of products
curl --request PUT \
  --url https://api.hubapi.com/crm-objects/v1/objects/products/{id}
[
  {
    "name": "name",
    "value": "An updated product"
  },
  {
    "name": "description",
    "value": "This product has an updated description and price."
  },
  {
    "name": "price",
    "value": "10.00"
  },
  {
    "versions": [
      {
        "name": "hs_lastmodifieddate",
        "value": "0",
        "timestamp": 0,
        "source": "CALCULATED",
        "sourceVid": []
      }
    ],
    "value": "0",
    "timestamp": 0,
    "source": "CALCULATED",
    "sourceId": null
  },
  {
    "versions": [
      {
        "name": "price",
        "value": "10.00",
        "timestamp": 1525287810508,
        "source": "API",
        "sourceVid": []
      }
    ],
    "value": "10.00",
    "timestamp": 1525287810508,
    "source": "API",
    "sourceId": null
  },
  {
    "versions": [
      {
        "name": "name",
        "value": "An updated product",
        "timestamp": 1525287810508,
        "source": "API",
        "sourceVid": []
      }
    ],
    "value": "An updated product",
    "timestamp": 1525287810508,
    "source": "API",
    "sourceId": null
  },
  {
    "versions": [
      {
        "name": "description",
        "value": "This product has an updated description and price.",
        "timestamp": 1525287810508,
        "source": "API",
        "sourceVid": []
      }
    ],
    "value": "This product has an updated description and price.",
    "timestamp": 1525287810508,
    "source": "API",
    "sourceId": null
  }
]

Response

200 - application/json

Successful response - Get a list of changes to products objects

The response is of type object.

Last modified on December 12, 2025