Skip to main content
Device pinners allow enterprises to control what devices can use native Box applications.

Device pinner

Device pins allow enterprises to control what devices can use native Box applications.
PropertyTypeRequiredDescription
idstringNoThe unique identifier for this device pin.
typeenum<string>NoThe value will always be device_pinner. Available options: device_pinner.
owned_byUser (Mini)NoThe user that the device pin belongs to.
product_namestringNoThe type of device being pinned.
Example
{
  "id": "11446498",
  "type": "device_pinner",
  "owned_by": {
    "id": "11446498",
    "type": "user",
    "name": "Aaron Levie",
    "login": "ceo@example.com"
  },
  "product_name": "iPad"
}

Device pinners

A list of device pins.
PropertyTypeRequiredDescription
entriesarray of Device pinnerNoA list of device pins.
limitintegerNoThe limit that was used for these entries. This will be the same as the limit query parameter unless that value exceeded the maximum value allowed.
next_markerintegerNoThe marker for the start of the next page of results.
orderarray of objectNoThe order by which items are returned.
Example
{
  "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"
    }
  ]
}
Last modified on July 9, 2026