> ## 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 the information on any import

> インポートレコードの完全な概要（更新を含む）。

export const ScopesList = ({scopes = [], description = "この API には、次のいずれかのスコープが必要です。"}) => {
  if (!scopes || scopes.length === 0) {
    return null;
  }
  const sortedScopes = scopes.sort((a, b) => a.localeCompare(b));
  return <div>
      <div className="text-sm mb-2">{description}</div>
      <div>
        {sortedScopes.map((scope, index) => <div key={index}>
            <code>
              <span className="text-xs">{scope}</span>
            </code>
          </div>)}
      </div>
    </div>;
};

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>;
};

<AccordionGroup>
  <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>

  <Accordion title="Required Scopes" icon="key">
    <ScopesList
      scopes={[
  'crm.import'
]}
    />
  </Accordion>
</AccordionGroup>


## OpenAPI

````yaml specs/2026-03/crm-imports-v2026-03.json GET /crm/imports/2026-03/{importId}
openapi: 3.0.1
info:
  title: CRM Imports
  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
paths:
  /crm/imports/2026-03/{importId}:
    get:
      tags:
        - Basic
      summary: インポートに関する情報を取得
      description: インポートレコードの完全な概要（更新を含む）。
      operationId: get-/crm/imports/2026-03/{importId}_/crm/imports/v3/{importId}
      parameters:
        - name: importId
          in: path
          description: ''
          required: true
          style: simple
          explode: false
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicImportResponse'
        default:
          $ref: '#/components/responses/Error'
          description: ''
      security:
        - oauth2:
            - crm.import
components:
  schemas:
    PublicImportResponse:
      required:
        - createdAt
        - id
        - mappedObjectTypeIds
        - metadata
        - optOutImport
        - state
        - updatedAt
      type: object
      properties:
        createdAt:
          type: string
          description: オブジェクトが作成された時点のタイムスタンプ（ISO 8601形式）。
          format: date-time
        id:
          type: string
          description: このインポートの固有ID。
        importName:
          type: string
          description: このインポートのユーザーが指定した名前。
        importRequestJson:
          type: object
          properties: {}
          description: JSONオブジェクトとしての完全なインポートリクエスト設定。
        importSource:
          type: string
          description: インポートが開始された場所／方法を示します。
          enum:
            - API
            - CRM_UI
            - IMPORT
            - MOBILE_ANDROID
            - MOBILE_IOS
            - SALESFORCE
        importTemplate:
          $ref: '#/components/schemas/ImportTemplate'
        mappedObjectTypeIds:
          type: array
          items:
            type: string
        metadata:
          $ref: '#/components/schemas/PublicImportMetadata'
        optOutImport:
          type: boolean
          description: Eメールを受信しない人のリストのインポートかどうか。
        state:
          type: string
          description: インポートのステータス。
          enum:
            - CANCELED
            - DEFERRED
            - DONE
            - FAILED
            - PROCESSING
            - REVERTED
            - STARTED
        updatedAt:
          type: string
          description: インポートレコードが最後に更新された時点のタイムスタンプ（ISO 8601インスタント形式）。
          format: date-time
    ImportTemplate:
      required:
        - templateId
        - templateType
      type: object
      properties:
        templateId:
          type: integer
          description: 参照されている特定の保存済みテンプレートまたは以前のインポートの固有ID。
          format: int64
        templateType:
          type: string
          description: これが表すテンプレートのタイプの分類と、その起源または目的。
          enum:
            - admin_defined
            - previous_import
            - user_file
    PublicImportMetadata:
      required:
        - counters
        - fileIds
        - objectLists
      type: object
      properties:
        counters:
          type: object
          additionalProperties:
            type: integer
            format: int32
          description: 開発者がHubSpotにインポートしようとした各行の要約された結果。
        fileIds:
          type: array
          description: ファイルマネージャーAPIでアップロードされたファイルのID。
          items:
            type: string
        objectLists:
          type: array
          description: インポートされたオブジェクトが含まれるリスト。
          items:
            $ref: '#/components/schemas/PublicObjectListRecord'
    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。エラー報告またはサポートチケットには必ずこの値を含めてください
          format: uuid
          example: aeb5f871-7f07-4993-9211-075dc63e7cbf
        errors:
          type: array
          description: エラーに関する詳細情報
          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
    PublicObjectListRecord:
      required:
        - listId
        - objectType
      type: object
      properties:
        listId:
          type: string
          description: インポートされたオブジェクトが含まれるリストのID。
        objectType:
          type: string
          description: リストに含まれるオブジェクトのタイプ。
    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:
            crm.import: ''

````