APIs & Integrations

Yel-o
投稿者

Including properties on filter

解決

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 いいね!
1件の承認済みベストアンサー
dennisedson
解決策
HubSpot製品開発チーム
HubSpot製品開発チーム

Including properties on filter

解決

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

元の投稿で解決策を見る

2件の返信
dennisedson
解決策
HubSpot製品開発チーム
HubSpot製品開発チーム

Including properties on filter

解決

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
投稿者

Including properties on filter

解決

Thank you, @dennisedson ! That worked perfectly!