action appcenter_devices_user_devices_list { label: "devices_userDevicesList" description: "Returns all devices associated with the given user." provider: appcenter method: GET path: "/v0.1/user/devices" encoding: json output: { type: "array" items: { description: "The information for a single iOS device" required: ["udid", "model", "device_name", "os_build", "os_version", "status"] 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" } } } } }