Thanks in advance for your help. I don’t receive all the LineItem properties that contain values when I use this GET in Postman. How can I receive all the data, including the associated Deal ID?
/crm/v3/objects/line_items?associations=deals&hapikey=xxxxx…
The returned data only shows:
“results”: [
{
“id”: “777777777”,
“properties”: {
“amount”: “0.000”,
“createdate”: “2020-02-18T21:58:11.654Z”,
“hs_lastmodifieddate”: “2021-07-18T06:44:11.917Z”,
“hs_object_id”: “777777777”,
“hs_product_id”: “88888888”,
“quantity”: “1”
},
“createdAt”: “2020-02-18T21:58:11.654Z”,
“updatedAt”: “2021-07-18T06:44:11.917Z”,
“archived”: false,
“associations”: {
“deals”: {
“results”: [
{
“id”: “2222222222”,
“type”: “line_item_to_deal”
}
]
}
}
},