> ## 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.

# List Device Management Services

Get a list of device management services in the organization.

<Note>
  External Documentation

  To learn more, visit the [Apple Business Manager documentation](https://developer.apple.com/documentation/applebusinessmanagerapi/get-device-management-services).
</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": "mdmServers",
			"id": "1F97349736CF4614A94F624E705841AD",
			"attributes": {
				"serverName": "Test Device Management Service",
				"serverType": "MDM",
				"createdDateTime": "2025-05-01T03:21:44.685Z",
				"updatedDateTime": "2025-05-01T03:21:46.284Z"
			},
			"relationships": {
				"devices": {
					"links": {
						"self": "https://api-business.apple.com/v1/mdmServers/1F97349736CF4614A94F624E705841AD/relationships/devices"
					}
				}
			}
		}
	],
	"links": {
		"self": "https://api-business.apple.com/v1/mdmServers"
	},
	"meta": {
		"paging": {
			"limit": 100
		}
	}
}
```

## Workflow Library Example

[List Device Management Services with Apple Business Manager and Send Results Via Email](https://library.blinkops.com/workflows/list-device-management-services-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/list-device-management-services-with-apple-business-manager-and-send-results-via-email/canvas" />
</div>
