Skip to main content
Get a list of device serial numbers assigned to a device management service by its ID.
External DocumentationTo learn more, visit the Apple Business Manager documentation.

Parameters

ParameterDescription
CursorThe cursor to the next page of results. Retrieve this value from the nextCursor property of a previous response to fetch subsequent data.
Device Management Service IDThe ID of the device management service to list device serial numbers from.
LimitThe maximum number of resources to retrieve in the response. The maximum value is 1000.
Return All PagesAutomatically fetch all resources, page by page.

Example Output

{
	"data": [
		{
			"type": "orgDevices",
			"id": "XABC123X0ABC123X0"
		}
	],
	"links": {
		"self": "https://api-business.apple/v1/mdmServers/1F97349736CF4614A94F624E705841AD/relationships/devices",
		"next": "https://api-business.apple/v1/mdmServers/1F97349736CF4614A94F624E705841AD/relationships/devices?cursor=MDowOjE3NDYxMTg0NjkzOTc6MTc0NjExODQ2OTM5Nzp0cnVlOmZhbHNlOjE3NDYxMTg0NjkzOTc",
		"related": "https://api-business.apple/v1/mdmServers/1F97349736CF4614A94F624E705841AD/devices"
	},
	"meta": {
		"paging": {
			"nextCursor": "MDowOjE3NDYxMTg0NjkzOTc6MTc0NjExODQ2OTM5Nzp0cnVlOmZhbHNlOjE3NDYxMTg0NjkzOTc",
			"limit": 100
		}
	}
}

Workflow Library Example

Get Device Serial Numbers with Apple Business Manager and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop
I