APIs & Integrations

Yel-o
Colaborador

Including properties on filter

resolver

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 Me gusta
1 Soluciones aceptada
dennisedson
Solución
Equipo de producto de HubSpot
Equipo de producto de HubSpot

Including properties on filter

resolver

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

Ver la solución en mensaje original publicado

2 Respuestas 2
dennisedson
Solución
Equipo de producto de HubSpot
Equipo de producto de HubSpot

Including properties on filter

resolver

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
Colaborador

Including properties on filter

resolver

Thank you, @dennisedson ! That worked perfectly!