> ## Documentation Index
> Fetch the complete documentation index at: https://developers.hubspot.es/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get filters for a subscription

> Obtén los filtros asociados a una suscripción de webhook específica en la cuenta de HubSpot. Este punto de terminación es útil para obtener información detallada sobre los filtros aplicados a una suscripción determinada, identificada por su ID de suscripción.

export const SupportedProducts = ({marketing, sales, service, cms, marketingLevel, salesLevel, serviceLevel, cmsLevel}) => {
  const translations = {
    header: "Productos compatibles",
    description: "Se requiere uno de los siguientes productos o productos de ediciones superiores.",
    productNames: {
      marketing: "Marketing Hub",
      sales: "Sales Hub",
      service: "Service Hub",
      cms: "Content Hub"
    },
    tiers: {
      free: "Gratuito",
      starter: "Starter",
      professional: "Pro",
      enterprise: "Enterprise"
    }
  };
  const translateTier = tier => {
    if (!tier) return '';
    const lowerTier = tier.toLowerCase();
    return translations.tiers[lowerTier] || tier;
  };
  const products = [{
    name: marketing ? translations.productNames.marketing : '',
    level: translateTier(marketingLevel),
    icon: "https://mintlify-assets.b-cdn.net/Icons/marketing-bolt.svg",
    alt: "Marketing Hub"
  }, {
    name: sales ? translations.productNames.sales : '',
    level: translateTier(salesLevel),
    icon: "https://mintlify-assets.b-cdn.net/Icons/sales-star.svg",
    alt: "Sales Hub"
  }, {
    name: service ? translations.productNames.service : '',
    level: translateTier(serviceLevel),
    icon: "https://mintlify-assets.b-cdn.net/Icons/service-heart.svg",
    alt: "Service Hub"
  }, {
    name: cms ? translations.productNames.cms : '',
    level: translateTier(cmsLevel),
    icon: "https://mintlify-assets.b-cdn.net/Icons/content-play.svg",
    alt: "Content Hub"
  }].filter(product => product.name && product.level);
  if (products.length === 0) return null;
  return <div>
      <div className="text-sm mb-2">{translations.description}</div>
      <div className={`grid ${products.length === 1 ? 'grid-cols-1' : 'grid-cols-2'} gap-1.5`}>
        {products.map((product, index) => <div key={index} style={{
    display: 'flex',
    alignItems: 'center'
  }}>
            <img src={product.icon} alt={product.alt} className="w-3.5 h-3.5 mr-1.5 mt-2.5 mb-2.5 flex-shrink-0 align-middle" />
            <span className="font-medium mr-1 text-sm">{product.name} -</span>
            <span className="text-sm">{product.level}</span>
          </div>)}
      </div>
    </div>;
};

<Accordion title="Supported products" defaultOpen="true" icon="cubes">
  <SupportedProducts marketing={true} sales={true} service={true} cms={true} marketingLevel="FREE" salesLevel="FREE" serviceLevel="FREE" cmsLevel="FREE" />
</Accordion>


## OpenAPI

````yaml specs/2026-03/webhooks-webhooks-v2026-03.json GET /webhooks-journal/subscriptions/2026-03/filters/subscription/{subscriptionId}
openapi: 3.0.1
info:
  title: Webhooks Webhooks
  description: Basepom for all HubSpot Projects
  version: 2026-03
  x-hubspot-product-tier-requirements:
    marketing: FREE
    sales: FREE
    service: FREE
    cms: FREE
    commerce: FREE
    crmHub: FREE
    dataHub: FREE
servers:
  - url: https://api.hubapi.com
security: []
tags:
  - name: Advanced
  - name: Basic
  - name: Batch
paths:
  /webhooks-journal/subscriptions/2026-03/filters/subscription/{subscriptionId}:
    get:
      tags:
        - Basic
      summary: Obtener filtros
      description: >-
        Obtén los filtros asociados a una suscripción de webhook específica en
        la cuenta de HubSpot. Este punto de terminación es útil para obtener
        información detallada sobre los filtros aplicados a una suscripción
        determinada, identificada por su ID de suscripción.
      operationId: >-
        get-/webhooks-journal/subscriptions/2026-03/filters/subscription/{subscriptionId}_/webhooks-journal/subscriptions/2026-03/filters/subscription/{subscriptionId}
      parameters:
        - name: subscriptionId
          in: path
          description: >-
            El identificador único de la suscripción para la que se obtienen los
            filtros.
          required: true
          style: simple
          explode: false
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FilterResponse'
        default:
          $ref: '#/components/responses/Error'
          description: ''
      security:
        - oauth2:
            - webhooks-journal-subscription-read
components:
  schemas:
    FilterResponse:
      required:
        - createdAt
        - filter
        - id
      type: object
      properties:
        createdAt:
          type: integer
          description: >-
            Una marca de tiempo Unix en milisegundos que indica cuándo se creó
            el filtro.
          format: int64
        filter:
          $ref: '#/components/schemas/Filter'
        id:
          type: integer
          description: >-
            El identificador único para el filtro. Es un número entero en
            formato int64.
          format: int64
    Filter:
      required:
        - conditions
      type: object
      properties:
        conditions:
          type: array
          description: >-
            Un conjunto de condiciones que definen los criterios para el filtro.
            Cada condición especifica una propiedad, un operador y,
            opcionalmente, uno o varios valores.
          items:
            $ref: '#/components/schemas/Condition'
      description: >-
        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. 
    Error:
      required:
        - category
        - correlationId
        - message
      type: object
      properties:
        category:
          type: string
          description: La categoría del error.
        context:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          description: >-
            Contexto sobre la condición del error, representado como un objeto
            con propiedades adicionales.
          example: >-
            {invalidPropertyName=[propertyValue], missingScopes=[scope1,
            scope2]}
        correlationId:
          type: string
          description: >-
            Un identificador único de la solicitud, con formato UUID. Debe
            incluirse en informes de error o tickets de asistencia.
          format: uuid
          example: aeb5f871-7f07-4993-9211-075dc63e7cbf
        errors:
          type: array
          description: >-
            Un conjunto que proporciona más información sobre el error, donde
            cada elemento es un objeto ErrorDetail.
          items:
            $ref: '#/components/schemas/ErrorDetail'
        links:
          type: object
          additionalProperties:
            type: string
          description: >-
            Un mapa de nombres de enlaces a URI asociados que contienen
            documentación sobre el error o los pasos de solución recomendados,
            representado como un objeto con propiedades de cadena.
        message:
          type: string
          description: >-
            Un mensaje legible que describe el error, junto con los pasos de
            solución cuando corresponda. Es una cadena.
          example: An error occurred
        subCategory:
          type: string
          description: >-
            Una categoría específica que contiene detalles más específicos sobre
            el error, representada como una cadena.
      example:
        message: Invalid input (details will vary based on the error)
        correlationId: aeb5f871-7f07-4993-9211-075dc63e7cbf
        category: VALIDATION_ERROR
        links:
          knowledge-base: https://www.hubspot.com/products/service/knowledge-base
    Condition:
      required:
        - filterType
        - operator
        - property
      type: object
      properties:
        filterType:
          type: string
          description: >-
            Una cadena que indica el tipo de filtro que se aplica. El valor
            válido es "CRM_OBJECT_PROPERTY".
          enum:
            - CRM_OBJECT_PROPERTY
        operator:
          type: string
          description: >-
            Una cadena que especifica la operación que se realizará en la
            condición. Los valores válidos son "EQ", "N_EQ", "LT", "GT", "LTE",
            "GTE", "CONTAINS", "STARTS_WITH", "ENDS_WITH", "IN", "NOT_IN",
            "IS_EMPTY" e "IS_NOT_EMPTY".
          enum:
            - CONTAINS
            - ENDS_WITH
            - EQ
            - GT
            - GTE
            - IN
            - IS_EMPTY
            - IS_NOT_EMPTY
            - LT
            - LTE
            - N_EQ
            - NOT_IN
            - STARTS_WITH
        property:
          type: string
          description: >-
            Una cadena que representa la propiedad específica del objeto del CRM
            al que se aplica la condición.
        value:
          type: string
          description: >-
            Una cadena que representa el valor que se comparará con la propiedad
            especificada al usar operadores de un solo valor.
        values:
          type: array
          description: >-
            Un conjunto de cadenas que se usan para especificar varios valores
            de comparación cuando se usan operadores que admiten varios valores,
            como "IN" o "NOT_IN".
          items:
            type: string
    ErrorDetail:
      required:
        - message
      type: object
      properties:
        code:
          type: string
          description: >-
            El código de estado asociado con el detalle del error. Esta cadena
            proporciona un código de error estandarizado para referencia.
        context:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          description: >-
            Contexto sobre la condición de error, representado como un objeto en
            el que cada clave es un nombre de contexto y el valor es un conjunto
            de cadenas que proporcionan más detalles.
          example: '{missingScopes=[scope1, scope2]}'
        in:
          type: string
          description: >-
            El nombre del campo o parámetro donde se encontró el error. Es una
            cadena que ayuda a identificar el origen del error.
        message:
          type: string
          description: >-
            Un mensaje legible que describe el error, junto con los pasos de
            solución cuando corresponda. Este es un campo obligatorio.
        subCategory:
          type: string
          description: >-
            Una categoría específica que contiene más detalles sobre el error.
            Esta cadena ayuda a clasificar aún más el error.
  responses:
    Error:
      description: An error occurred.
      content:
        '*/*':
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://app.hubspot.com/oauth/authorize
          tokenUrl: https://api.hubapi.com/oauth/v1/token
          scopes:
            developers-read: ''
            developers-write: ''
            private-apps-read: ''
            private-apps-write: ''
            webhooks-journal-data-access: ''
            webhooks-journal-snapshot-management: ''
            webhooks-journal-subscription-management: ''
            webhooks-journal-subscription-read: ''

````