> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Organization Devices

Get a list of devices in the organization that enrolled using Automated Device Enrollment.

<Note>
  External Documentation

  To learn more, visit the [Apple Business Manager documentation](https://developer.apple.com/documentation/applebusinessmanagerapi/get-org-devices).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                 |
  | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
  | Cursor           | The cursor to the next page of results. Retrieve this value from the `nextCursor` property of a previous response to fetch subsequent data. |
  | Fields           | The fields to include in the response.                                                                                                      |
  | Limit            | The maximum number of resources to retrieve in the response. The maximum value is `1000`.                                                   |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                            |
</div>

## Example Output

```json theme={"dark"}
{
	"data": [
		{
			"type": "orgDevices",
			"id": "XABC123X0ABC123X0",
			"attributes": {
				"serialNumber": "XABC123X0ABC123X0",
				"addedToOrgDateTime": "2025-04-30T22:05:14.192Z",
				"updatedDateTime": "2025-05-01T15:33:54.164Z",
				"deviceModel": "iMac 21.5\"",
				"productFamily": "Mac",
				"productType": "iMac16,2",
				"deviceCapacity": "750GB",
				"partNumber": "FD311LL/A",
				"orderNumber": "1234567890",
				"color": "SILVER",
				"status": "UNASSIGNED",
				"orderDateTime": "2011-08-15T07:00:00Z",
				"imei": [
					"123456789012345",
					"123456789012346"
				],
				"meid": [
					"12345678901237"
				],
				"eid": "89049037640158663184237812557346",
				"purchaseSourceUid": "-2085650007946880",
				"purchaseSourceType": "APPLE"
			},
			"relationships": {
				"assignedServer": {
					"links": {
						"self": "https://api-business.apple.com/v1/orgDevices/XABC123X0ABC123X0/relationships/assignedServer",
						"related": "https://api-business.apple.com/v1/orgDevices/XABC123X0ABC123X0/assignedServer"
					}
				}
			},
			"links": {
				"self": "https://api-business.apple.com/v1/orgDevices/XABC123X0ABC123X0"
			}
		}
	],
	"links": {
		"self": "https://api-business.apple.com/v1/orgDevices",
		"next": "https://api-business.apple.com/v1/orgDevices?cursor=MDowOjE3NDYxMTM4OTI1OTA6MTc0NjExMzg5MjU5MDp0cnVlOmZhbHNlOjE3NDYxMTM4OTI1OTA"
	},
	"meta": {
		"paging": {
			"nextCursor": "MDowOjE3NDYxMTM4OTI1OTA6MTc0NjExMzg5MjU5MDp0cnVlOmZhbHNlOjE3NDYxMTM4OTI1OTA",
			"limit": 100
		}
	}
}
```

## Workflow Library Example

[Get Organization Devices with Apple Business Manager and Send Results Via Email](https://library.blinkops.com/workflows/get-organization-devices-with-apple-business-manager-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-organization-devices-with-apple-business-manager-and-send-results-via-email/canvas" />
</div>
