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

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

Building on the login tracking feature – which allows admins to set limits on
the number of devices a user can access Box from and sends alerts to them and
the user whenever a new device is used to access that Box account – Box has
additional device management functionality to increase security when accessing
Box on mobile or desktop devices: device pinning.

To learn more about device pinning, please see our [community
documentation][community].

## APIs

The Box API allows for device pins to be inspected and removed.

* <Link href="/reference/get-enterprises-id-device-pinners">`GET /enterprise/:id/device_pinners`</Link>: Retrieves all the device pins within an enterprise.
* <Link href="/reference/get-device-pinners-id">`GET /device_pinners/:id`</Link>: Retrieves information about an individual device pin.
* <Link href="/reference/delete-device-pinners-id">`DELETE /device_pinners/:id`</Link>: Deletes an individual device pin.

[community]: https://support.box.com/hc/en-us/articles/360043693814-Device-Pinning-Settings
