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

# Get filters for a subscription

> HubSpotアカウント内の特定のWebhook配信登録に関連付けられたフィルターを取得します。このエンドポイントは、配信登録IDで識別される特定の配信登録に適用されているフィルターに関する詳細情報を取得するのに役立ちます。

export const SupportedProducts = ({marketing, sales, service, cms, marketingLevel, salesLevel, serviceLevel, cmsLevel}) => {
  const translations = {
    header: "サポートされる製品",
    description: "次のいずれかの製品またはそれ以上が必要です。",
    productNames: {
      marketing: "Marketing Hub",
      sales: "Sales Hub",
      service: "Service Hub",
      cms: "Content Hub"
    },
    tiers: {
      free: "無料ツール",
      starter: "Starter",
      professional: "Professional",
      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: フィルターを取得
      description: >-
        HubSpotアカウント内の特定のWebhook配信登録に関連付けられたフィルターを取得します。このエンドポイントは、配信登録IDで識別される特定の配信登録に適用されているフィルターに関する詳細情報を取得するのに役立ちます。
      operationId: >-
        get-/webhooks-journal/subscriptions/2026-03/filters/subscription/{subscriptionId}_/webhooks-journal/subscriptions/2026-03/filters/subscription/{subscriptionId}
      parameters:
        - name: subscriptionId
          in: path
          description: フィルターを取得する配信登録の固有ID。
          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: フィルターが作成された日時を示すミリ秒単位のUnixタイムスタンプ。
          format: int64
        filter:
          $ref: '#/components/schemas/Filter'
        id:
          type: integer
          description: フィルターの一意の識別子です。int64形式の整数です。
          format: int64
    Filter:
      required:
        - conditions
      type: object
      properties:
        conditions:
          type: array
          description: フィルターの条件を定義する条件の配列。各条件は、プロパティー、演算子、およびオプションで1つ以上の値を指定します。
          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: エラーカテゴリー。
        context:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          description: エラー状態に関する背景情報で、追加プロパティーがあるオブジェクトとして表されます。
          example: >-
            {invalidPropertyName=[propertyValue], missingScopes=[scope1,
            scope2]}
        correlationId:
          type: string
          description: リクエストの固有ID。UUID形式です。エラー報告またはサポートチケットには必ずこの値を含めてください。
          format: uuid
          example: aeb5f871-7f07-4993-9211-075dc63e7cbf
        errors:
          type: array
          description: エラーに関する詳細情報を提供する配列で、各項目はErrorDetailオブジェクトです。
          items:
            $ref: '#/components/schemas/ErrorDetail'
        links:
          type: object
          additionalProperties:
            type: string
          description: >-
            エラーに関するドキュメントまたは推奨される修正手順が含まれる関連付けられたURIへのリンク名の対応付けで、文字列プロパティーがあるオブジェクトとして表されます。
        message:
          type: string
          description: エラーと、該当する場合は修正手順を記した人間が理解できるメッセージ。文字列です。
          example: An error occurred
        subCategory:
          type: string
          description: エラーに関するより具体的な詳細が含まれる特定のカテゴリーで、文字列として表されます。
      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: 適用されるフィルターのタイプを示す文字列。有効な値は「CRM_OBJECT_PROPERTY」です。
          enum:
            - CRM_OBJECT_PROPERTY
        operator:
          type: string
          description: >-
            条件で実行する操作を指定する文字列。有効な値には、「EQ」、「N_EQ」、「LT」、「GT」、「LTE」、「GTE」、「CONTAINS」、「STARTS_WITH」、「ENDS_WITH」、「IN」、「NOT_IN」、「IS_EMPTY」、「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: 条件が適用されるCRMオブジェクトの特定のプロパティーを表す文字列。
        value:
          type: string
          description: 単一値演算子を使用する際に、指定されたプロパティーと比較される値を表す文字列。
        values:
          type: array
          description: 「IN」や「NOT_IN」など、複数の値をサポートする演算子を使用する際に、比較する複数の値を指定するために使用される文字列の配列。
          items:
            type: string
    ErrorDetail:
      required:
        - message
      type: object
      properties:
        code:
          type: string
          description: エラーの詳細に関連付けられたステータスコード。この文字列は、参照用の標準化されたエラーコードを提供します。
        context:
          type: object
          additionalProperties:
            type: array
            items:
              type: string
          description: エラー条件に関する背景情報。各キーがコンテキスト名で、値が詳細情報を提供する文字列の配列であるオブジェクトとして表されます。
          example: '{missingScopes=[scope1, scope2]}'
        in:
          type: string
          description: エラーが見つかったフィールドまたはパラメーターの名前。エラーの原因を特定するのに役立つ文字列です。
        message:
          type: string
          description: エラーと、該当する場合は修正手順を記した人間が理解できるメッセージ。これは必須フィールドです。
        subCategory:
          type: string
          description: エラーに関するより具体的な詳細を含む特定のカテゴリー。この文字列は、エラーをさらに分類するのに役立ちます。
  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: ''

````