> ## Documentation Index
> Fetch the complete documentation index at: https://developer.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 統合マッピング リソース

統合マッピングを使用すると、ユーザーはパートナーアプリからのコンテンツがBoxのどこに保存されるかを管理できます。

## Slack統合マッピング

統合マッピングオブジェクトのSlack固有のレプリゼンテーション。

<Accordion title="属性と例">
  | プロパティ                 | 型                                                    | 必須  | 説明                                                                                             |
  | --------------------- | ---------------------------------------------------- | --- | ---------------------------------------------------------------------------------------------- |
  | `id`                  | `string`                                             | はい  | フォルダマッピングの一意の識別子 (`integration_type`とともに複合キーの一部)。                                              |
  | `type`                | `enum<string>`                                       | はい  | マッピングタイプ。 使用可能なオプション: `integration_mapping`.                                                   |
  | `integration_type`    | `enum<string>`                                       | いいえ | マッピングが関連付けられているBoxパートナーアプリを示します。現在サポートされているのはSlackのみです (`id`とともに複合キーの一部)。 使用可能なオプション: `slack`. |
  | `is_manually_created` | `boolean`                                            | いいえ | マッピングが (自動作成されたのではなく) 手動で設定されているかどうかを示します。                                                     |
  | `options`             | `Slackタイプ用の統合マッピングオプション`                             | いいえ |                                                                                                |
  | `created_by`          | [ユーザー (統合マッピング)](/ja/reference/users-resources#-)    | いいえ | 統合マッピングを作成したユーザーを表すオブジェクト。                                                                     |
  | `modified_by`         | [ユーザー (統合マッピング)](/ja/reference/users-resources#-)    | いいえ | 統合マッピングを最後に変更したユーザー。                                                                           |
  | `partner_item`        | `Slackタイプの統合マッピングのマッピングされた項目スキーマ`                    | はい  | Slack用にマッピングされた項目オブジェクト。                                                                       |
  | `box_item`            | [フォルダ (Mini)](/ja/reference/folders-resources#-mini) | はい  | パートナーアプリのドメインのオブジェクト (`partner_item_id`で参照) のマッピング先であるBoxフォルダ。                                 |
  | `created_at`          | `string`                                             | いいえ | 統合マッピングオブジェクトが作成された日時。                                                                         |
  | `modified_at`         | `string`                                             | いいえ | 統合マッピングオブジェクトが最後に変更された日時。                                                                      |

  ```json 例 theme={null}
  {
    "id": "12345",
    "type": "integration_mapping",
    "integration_type": "slack",
    "is_manually_created": true,
    "options": {
      "is_access_management_disabled": true
    },
    "created_by": {
      "id": "11446498",
      "type": "user",
      "name": "Aaron Levie",
      "login": "ceo@example.com"
    },
    "modified_by": {
      "id": "11446498",
      "type": "user",
      "name": "Aaron Levie",
      "login": "ceo@example.com"
    },
    "partner_item": {
      "id": "C12378991223",
      "type": "channel",
      "slack_org_id": "E1234567"
    },
    "box_item": {
      "id": "12345",
      "etag": "1",
      "type": "folder",
      "sequence_id": "3",
      "name": "Contracts"
    },
    "created_at": "2012-12-12T10:53:43-08:00",
    "modified_at": "2012-12-12T10:53:43-08:00"
  }
  ```
</Accordion>

## Slack統合マッピング (リスト)

統合マッピングオブジェクトのリスト。

<Accordion title="属性と例">
  | プロパティ         | 型                               | 必須  | 説明                                                                             |
  | ------------- | ------------------------------- | --- | ------------------------------------------------------------------------------ |
  | `limit`       | `integer`                       | いいえ | これらのエントリで使用された制限値。許容される最大値を超えていない限り、クエリパラメータの`limit`と等しくなります。最大値はAPIによって異なります。 |
  | `next_marker` | `string`                        | いいえ | 次の検索結果ページの開始場所のマーカー。 `null` を指定できます。                                           |
  | `entries`     | array of [Slack統合マッピング](#slack) | いいえ | 統合マッピングのリスト。                                                                   |

  ```json 例 theme={null}
  {
    "limit": 1000,
    "next_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii",
    "entries": [
      {
        "id": "12345",
        "type": "integration_mapping",
        "integration_type": "slack",
        "is_manually_created": true,
        "options": {
          "is_access_management_disabled": true
        },
        "created_by": {
          "id": "11446498",
          "type": "user",
          "name": "Aaron Levie",
          "login": "ceo@example.com"
        },
        "modified_by": {
          "id": "11446498",
          "type": "user",
          "name": "Aaron Levie",
          "login": "ceo@example.com"
        },
        "partner_item": {
          "id": "C12378991223",
          "type": "channel",
          "slack_org_id": "E1234567"
        },
        "box_item": {
          "id": "12345",
          "etag": "1",
          "type": "folder",
          "sequence_id": "3",
          "name": "Contracts"
        },
        "created_at": "2012-12-12T10:53:43-08:00",
        "modified_at": "2012-12-12T10:53:43-08:00"
      }
    ]
  }
  ```
</Accordion>

## Teams統合マッピング

統合マッピングオブジェクトのMicrosoft Teams固有のレプリゼンテーション。

<Accordion title="属性と例">
  | プロパティ                             | 型                                 | 必須  | 説明                                                                                             |
  | --------------------------------- | --------------------------------- | --- | ---------------------------------------------------------------------------------------------- |
  | `id`                              | `string`                          | はい  | フォルダマッピングの一意の識別子 (`integration_type`とともに複合キーの一部)。                                              |
  | `type`                            | `enum<string>`                    | はい  | マッピングタイプ。 使用可能なオプション: `integration_mapping`.                                                   |
  | `integration_type`                | `enum<string>`                    | いいえ | マッピングが関連付けられているBoxパートナーアプリを示します。SlackとTeamsがサポートされています (`id`とともに複合キーの一部)。 使用可能なオプション: `teams`. |
  | `is_overridden_by_manual_mapping` | `boolean`                         | いいえ | マッピングが (自動作成されたのではなく) チーム所有者によってチャネルのUIから手動で設定されているかどうかを示します。                                  |
  | `partner_item`                    | `Teamsタイプの統合マッピングのマッピングされた項目スキーマ` | はい  | Teams用にマッピングされた項目オブジェクト。                                                                       |
  | `box_item`                        | `フォルダの参照`                         | はい  | パートナーアプリのドメインのオブジェクト (`partner_item_id`で参照) のマッピング先であるBoxフォルダ。                                 |
  | `created_at`                      | `string`                          | いいえ | 統合マッピングオブジェクトが作成された日時。                                                                         |
  | `modified_at`                     | `string`                          | いいえ | 統合マッピングオブジェクトが最後に変更された日時。                                                                      |

  ```json 例 theme={null}
  {
    "id": "12345",
    "type": "integration_mapping",
    "integration_type": "teams",
    "is_overridden_by_manual_mapping": true,
    "partner_item": {
      "id": "19%3ABCD-Avgfggkggyftdtfgghjhkhkhh%40thread:tacv2",
      "type": "channel",
      "tenant_id": "E1234567",
      "team_id": "hjgjgjg-bhhj-564a-b643-hghgj685u"
    },
    "box_item": {
      "type": "folder",
      "id": "42037322"
    },
    "created_at": "2012-12-12T10:53:43-08:00",
    "modified_at": "2012-12-12T10:53:43-08:00"
  }
  ```
</Accordion>

## Teams統合マッピング (リスト)

統合マッピングオブジェクトのリスト。

<Accordion title="属性と例">
  | プロパティ     | 型                               | 必須  | 説明           |
  | --------- | ------------------------------- | --- | ------------ |
  | `entries` | array of [Teams統合マッピング](#teams) | いいえ | 統合マッピングのリスト。 |

  ```json 例 theme={null}
  {
    "entries": [
      {
        "id": "12345",
        "type": "integration_mapping",
        "integration_type": "teams",
        "is_overridden_by_manual_mapping": true,
        "partner_item": {
          "id": "19%3ABCD-Avgfggkggyftdtfgghjhkhkhh%40thread:tacv2",
          "type": "channel",
          "tenant_id": "E1234567",
          "team_id": "hjgjgjg-bhhj-564a-b643-hghgj685u"
        },
        "box_item": {
          "type": "folder",
          "id": "42037322"
        },
        "created_at": "2012-12-12T10:53:43-08:00",
        "modified_at": "2012-12-12T10:53:43-08:00"
      }
    ]
  }
  ```
</Accordion>
