A beta version of the new Box developer documentation site is launching soon! Updated Developer Guides, modern API Reference, and AI-powered search are on the way to help you build with Box faster. Stay tuned for more updates.
Deletes an individual device pin.
2324234The ID of the device pin.
Returns an empty response when the pin has been deleted.
An unexpected client error.
curl -i -X DELETE "https://api.box.com/2.0/device_pinners/2324234" \
-H "authorization: Bearer <ACCESS_TOKEN>"await client.devicePinners.deleteDevicePinnerById(devicePinnerId);client.device_pinners.delete_device_pinner_by_id(device_pinner_id)await client.DevicePinners.DeleteDevicePinnerByIdAsync(devicePinnerId: devicePinnerId);try await client.devicePinners.deleteDevicePinnerById(devicePinnerId: devicePinnerId)client.getDevicePinners().deleteDevicePinnerById(devicePinnerId)BoxDevicePin devicePin = new BoxDevicePin(api, id);
devicePin.delete();device_pin_id = '1111'
client.device_pin(device_pin_id).delete()
print('Device pin deleted!')await client.DevicePinManager.DeleteDevicePin(id: "11111");client.devicePins.delete('28345')
.then(() => {
// deletion succeeded — no value returned
});