> ## 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.

# Device Pinners リソース

Device Pinnerを使用すると、どのデバイスでネイティブBoxアプリケーションの使用を許可するかを企業レベルで制御できます。

## Device Pinner

デバイスピンを使用すると、どのデバイスでネイティブBoxアプリケーションの使用を許可するかを会社レベルで制御できます。

<Accordion title="属性と例">
  | プロパティ          | 型                                                  | 必須  | 説明                                                     |
  | -------------- | -------------------------------------------------- | --- | ------------------------------------------------------ |
  | `id`           | `string`                                           | いいえ | このデバイスピンの一意の識別子。                                       |
  | `type`         | `enum<string>`                                     | いいえ | 値は常に`device_pinner`になります。 使用可能なオプション: `device_pinner`. |
  | `owned_by`     | [ユーザー (Mini)](/ja/reference/users-resources#-mini) | いいえ | デバイスピンが属するユーザー。                                        |
  | `product_name` | `string`                                           | いいえ | ピンが設定されているデバイスのタイプ。                                    |

  ```json 例 theme={null}
  {
    "id": "11446498",
    "type": "device_pinner",
    "owned_by": {
      "id": "11446498",
      "type": "user",
      "name": "Aaron Levie",
      "login": "ceo@example.com"
    },
    "product_name": "iPad"
  }
  ```
</Accordion>

## Device Pinners

デバイスピンのリスト。

<Accordion title="属性と例">
  | プロパティ         | 型                                        | 必須  | 説明                                                            |
  | ------------- | ---------------------------------------- | --- | ------------------------------------------------------------- |
  | `entries`     | array of [Device Pinner](#device-pinner) | いいえ | デバイスピンのリスト。                                                   |
  | `limit`       | `integer`                                | いいえ | これらのエントリで使用された制限値。許容される最大値を超えていない限り、クエリパラメータの`limit`と等しくなります。 |
  | `next_marker` | `integer`                                | いいえ | 次の検索結果ページの開始場所のマーカー。                                          |
  | `order`       | array of `object`                        | いいえ | 項目が返される順序。                                                    |

  ```json 例 theme={null}
  {
    "entries": [
      {
        "id": "11446498",
        "type": "device_pinner",
        "owned_by": {
          "id": "11446498",
          "type": "user",
          "name": "Aaron Levie",
          "login": "ceo@example.com"
        },
        "product_name": "iPad"
      }
    ],
    "limit": 200,
    "next_marker": 3000,
    "order": [
      {
        "by": "id",
        "direction": "asc"
      }
    ]
  }
  ```
</Accordion>
