Skip to main content
GET
/
device_pinners
/
{device_pinner_id}
cURL
curl -i -X GET "https://api.box.com/2.0/device_pinners/2324234" \
     -H "authorization: Bearer <ACCESS_TOKEN>"
{
  "id": "11446498",
  "type": "device_pinner",
  "owned_by": {
    "id": "11446498",
    "type": "user",
    "name": "Aaron Levie",
    "login": "[email protected]"
  },
  "product_name": "iPad"
}
This endpoint is in the version 2024.0. No changes are required to continue using it. For more details, see Box API versioning.Learn more about Box SDK versioning strategy.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

device_pinner_id
string
required

The ID of the device pin.

Response

Returns information about a single device pin.

Device pins allow enterprises to control what devices can use native Box applications.

id
string

The unique identifier for this device pin.

Example:

"11446498"

type
enum<string>

The value will always be device_pinner.

Available options:
device_pinner
Example:

"device_pinner"

owned_by
User (Mini) · object

The user that the device pin belongs to.

product_name
string

The type of device being pinned.

Example:

"iPad"