How could I get all user defined properties of a Products?

Hi,

I created some user properties for a product.

But I can’t receive any user properties data of a product by calling this api:

{{baseUrl}}/crm/v3/objects/products/<product id>

Also I can’t receive SKU of a product.

Please help and tell me how could I have all related data of a product?

Hi @CTeam06

curl --request POST \
 --url https://api.hubapi.com/crm/v3/properties/products/batch/read \
 --header 'authorization: Bearer YOUR_ACCESS_TOKEN' \
 --header 'content-type: application/json' \
 --data '{
 "archived": true,
 "inputs": [
 {
 "name": "my_custom_property"
 }
 ]
}'

For more details you can refer to the link attached (CLICK HERE)

Hope this will helps you out. Please mark it as Solution Accepted & Upvote to help other Community member.
Thanks!