action box_get_device_pinners_id { label: "Get device pin" description: "Retrieves information about an individual device pin." provider: box method: GET path: "/device_pinners/{device_pinner_id}" encoding: json input: { type: "object" properties: { device_pinner_id: { type: "string" } } required: ["device_pinner_id"] additionalProperties: false } output: { type: "object" description: "Device pins allow enterprises to control what devices can\nuse native Box applications." properties: { id: { type: "string" description: "The unique identifier for this device pin." } owned_by: { type: "object" } product_name: { type: "string" description: "The type of device being pinned" } type: { type: "string" description: "`device_pinner`" enum: ["device_pinner"] } } } }