curl --request GET \
--url https://api.hubapi.com/webhooks-journal/subscriptions/2026-03/filters/{filterId} \
--header 'Authorization: Bearer <token>'{
"createdAt": 123,
"filter": {
"conditions": [
{
"property": "<string>",
"value": "<string>",
"values": [
"<string>"
]
}
]
},
"id": 123
}Retrieve details of a specific filter associated with a webhook subscription in the HubSpot account. This endpoint is useful for accessing the configuration and conditions of a filter by its unique identifier.
curl --request GET \
--url https://api.hubapi.com/webhooks-journal/subscriptions/2026-03/filters/{filterId} \
--header 'Authorization: Bearer <token>'{
"createdAt": 123,
"filter": {
"conditions": [
{
"property": "<string>",
"value": "<string>",
"values": [
"<string>"
]
}
]
},
"id": 123
}Documentation Index
Fetch the complete documentation index at: https://developers.hubspot.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Supported products
The access token received from the authorization server in the OAuth 2.0 flow.
The unique identifier of the filter to retrieve.
successful operation
A Unix timestamp in milliseconds indicating when the filter was created.
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.
Show child attributes
The unique identifier for the filter. It is an integer in int64 format.
Was this page helpful?