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

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = localizeLink(href);
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

デバイスの管理と呼ばれる、モバイルデバイスまたはデスクトップデバイスからBoxにアクセスする際のセキュリティを強化するデバイス管理機能を追加しました。これは、ユーザーがBoxへのアクセスに使用するデバイス数の上限を管理者が設定できるようにし、そのBoxアカウントへのアクセスに新しいデバイスが使用されるたびに管理者とユーザーにアラートを送信するログイン追跡機能に基づいています。

デバイスの管理の詳細については、Boxの[コミュニティのドキュメント][community]を参照してください。

## API

Box APIを使用すると、デバイスピンを検査したり削除したりすることができます。

* <Link href="/reference/get-enterprises-id-device-pinners">`GET /enterprise/:id/device_pinners`</Link>: 会社内のすべてのデバイスピンを取得します。
* <Link href="/reference/get-device-pinners-id">`GET /device_pinners/:id`</Link>: 個々のデバイスピンに関する情報を取得します。
* <Link href="/reference/delete-device-pinners-id">`DELETE /device_pinners/:id`</Link>: 個々のデバイスピンを削除します。

[community]: https://support.box.com/hc/ja/articles/360043693814-デバイスの管理の設定
