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

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.

<Accordion title="Attributes and example">
  | Property       | Type                                                | Required | Description                                                                   |
  | -------------- | --------------------------------------------------- | -------- | ----------------------------------------------------------------------------- |
  | `id`           | `string`                                            | No       | The unique identifier for this device pin.                                    |
  | `type`         | `enum<string>`                                      | No       | The value will always be `device_pinner`. Available options: `device_pinner`. |
  | `owned_by`     | [User (Mini)](/reference/users-resources#user-mini) | No       | The user that the device pin belongs to.                                      |
  | `product_name` | `string`                                            | No       | The type of device being pinned.                                              |

  ```json Example 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

A list of device pins.

<Accordion title="Attributes and example">
  | Property      | Type                                     | Required | Description                                                                                                                                           |
  | ------------- | ---------------------------------------- | -------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `entries`     | array of [Device pinner](#device-pinner) | No       | A list of device pins.                                                                                                                                |
  | `limit`       | `integer`                                | No       | The 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_marker` | `integer`                                | No       | The marker for the start of the next page of results.                                                                                                 |
  | `order`       | array of `object`                        | No       | The order by which items are returned.                                                                                                                |

  ```json Example 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>
