Join BoxWorks 2024 to discover what's possible with content and AI!
Register now!Retrieves information about an individual device pin.
2324234
The ID of the device pin
Returns information about a single device pin.
An unexpected client error.
curl -i -X GET "https://api.box.com/2.0/device_pinners/2324234" \
-H "authorization: Bearer <ACCESS_TOKEN>"
client.device_pinners.get_device_pinner_by_id(device_pinner_id)
await client.DevicePinners.GetDevicePinnerByIdAsync(devicePinnerId: devicePinnerId);
BoxDevicePin devicePin = new BoxDevicePin(api, id);
BoxDevicePin.Info devicePinInfo = devicePin.getInfo();
device_pin_id = '1111'
device_pin = client.device_pinner(device_pin_id).get()
print(f'{pin.product_name} device for {pin.owned_by.name} is pinned')
BoxDevicePin pin = await client.DevicePinManager.GetDevicePin(id: "11111");
client.devicePins.get('11111')
.then(pin => {
/* pin -> {
type: 'device_pinner',
id: '11111',
owned_by:
{
type: 'user',
id: '22222',
name: 'Example User',
login: 'user@example.com'
},
product_name: 'iPad'
}
*/
});
client.devicePins.get(devicePinId: "11111", fields: ["product_name"]) { (result: Result<DevicePin, BoxSDKError>) in
guard case let .success(devicePin) = result else {
print("Error retrieving device pin information")
return
}
print("Device Pin for \(devicePin.productName) was created at \(devicePin.createdAt)")
}
{
"id": "11446498",
"type": "device_pinner",
"owned_by": {
"id": "11446498",
"type": "user",
"login": "ceo@example.com",
"name": "Aaron Levie"
},
"product_name": "iPad"
}