Skip to main content
GET
/
webhooks-journal
/
subscriptions
/
2026-03
/
filters
/
{filterId}
cURL
curl --request GET \
  --url https://api.hubapi.com/webhooks-journal/subscriptions/2026-03/filters/{filterId} \
  --header 'Authorization: Bearer <token>'
{
  "createdAt": 123,
  "filter": {
    "conditions": [
      {
        "filterType": "CRM_OBJECT_PROPERTY",
        "operator": "CONTAINS",
        "property": "<string>",
        "value": "<string>",
        "values": [
          "<string>"
        ]
      }
    ]
  },
  "id": 123
}

Supported products

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

filterId
integer<int64>
required

Response

successful operation

createdAt
integer<int64>
required
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.

id
integer<int64>
required
Last modified on April 15, 2026