APIs & Integrations

Yel-o
Contributor

Including properties on filter

SOLVE

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"]}

 

 

 

 

 

  

0 Upvotes
1 Accepted solution
dennisedson
Solution
HubSpot Product Team
HubSpot Product Team

Including properties on filter

SOLVE

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"
    ]
}

View solution in original post

2 Replies 2
dennisedson
Solution
HubSpot Product Team
HubSpot Product Team

Including properties on filter

SOLVE

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"
    ]
}
Yel-o
Contributor

Including properties on filter

SOLVE

Thank you, @dennisedson ! That worked perfectly!