action appcenter_devices_device_details { label: "devices_deviceDetails" description: "Returns the device details." provider: appcenter method: GET path: "/v0.1/user/devices/{device_udid}" encoding: json input: { type: "object" properties: { device_udid: { type: "string" } } required: ["device_udid"] additionalProperties: false } output: { description: "The information for a single iOS device" required: ["device_name", "model", "os_build", "os_version", "status", "udid"] properties: { device_name: { type: "string" description: "The device description, in the format \"iPhone 7 Plus (A1784)\"" } full_device_name: { type: "string" description: "A combination of the device model name and the owner name." } imei: { type: "string" description: "The device's International Mobile Equipment Identity number. Always empty or undefined at present." } model: { type: "string" description: "The model identifier of the device, in the format iDeviceM,N" } os_build: { type: "string" description: "The last known OS version running on the device" } os_version: { type: "string" description: "The last known OS version running on the device" } owner_id: { type: "string" description: "The user ID of the device owner." } registered_at: { type: "string" description: "Timestamp of when the device was registered in ISO format." } serial: { type: "string" description: "The device's serial number. Always empty or undefined at present." } status: { type: "string" description: "The provisioning status of the device." } udid: { type: "string" description: "The Unique Device IDentifier of the device" } } } }