We use cookies to make HubSpot's community a better place. Cookies help to provide a more personalized experience and relevant advertising for you, and web analytics for us. To learn more, and to see a full list of cookies we use, check out our Cookie Policy (baked goods not included).
Dec 14, 2021 12:07 PM - edited Dec 14, 2021 12:08 PM
Hello,
Silly question. I can't seem to no longer display the properties we need on a filter. It worked last week but today, it doesn't. How do I specify the properties we want and use the filter at the same time to display? This is currently what I have written. I'm also using Postman.
{"filters":
[
{
"value":"1639015200000",
"propertyName":"hs_lastmodifieddate",
"operator":"LTE"
}]
},
{"properties":["actual_revenue","contact_name","deal_name","posting_title"]}
Solved! Go to Solution.
Dec 15, 2021 4:51 PM
Hey @Yel-o
Looks like your json is invalid. See if this works
{
"filters": [
{
"value": "1639015200000",
"propertyName": "hs_lastmodifieddate",
"operator": "LTE"
}
],
"properties": [
"actual_revenue",
"contact_name",
"deal_name",
"posting_title"
]
}
Dec 15, 2021 4:51 PM
Hey @Yel-o
Looks like your json is invalid. See if this works
{
"filters": [
{
"value": "1639015200000",
"propertyName": "hs_lastmodifieddate",
"operator": "LTE"
}
],
"properties": [
"actual_revenue",
"contact_name",
"deal_name",
"posting_title"
]
}
Dec 17, 2021 10:39 AM
Thank you, @dennisedson ! That worked perfectly!