Skip to main content
POST
/
webhooks-journal
/
subscriptions
/
2026-03
/
filters
cURL
curl --request POST \
  --url https://api.hubapi.com/webhooks-journal/subscriptions/2026-03/filters \
  --header 'Content-Type: application/json' \
  --data '
{
  "filter": {
    "conditions": [
      {
        "filterType": "CRM_OBJECT_PROPERTY",
        "operator": "CONTAINS",
        "property": "<string>",
        "value": "<string>",
        "values": [
          "<string>"
        ]
      }
    ]
  },
  "subscriptionId": 123
}
'
{
  "filterId": 123
}

Supported products

Body

application/json
filter
object
required

Defines a single condition for searching CRM objects, specifying the property to filter on, the operator to use (such as equals, greater than, or contains), and the value(s) to compare against.

subscriptionId
integer<int64>
required

Response

successful operation

filterId
integer<int64>
required
Last modified on March 30, 2026