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

This endpoint returns the details of apps which are assigned or installed on the device matching the search text. Following special characters are not allowed in query params ('\[', ']', '(', ')', '{', '}', '\<', '>', '"').

## Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                                                                                                                                                  |
  | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Device UUID | The uuid of the device.            Accepted formats **guid**            E.g. 3d958f38-246e-4854-a306-189d941ab073(Required).                                                                                 |
  | Page        | Page number which will be fetched, 0 based index. Default 0.                                                                                                                                                 |
  | Page Size   | Maximum number of results to be returned in one page. Default 500.                                                                                                                                           |
  | Search Text | If provided, the records matching this text will be returned. The search will be applied on the following properties \[name, installed\_version, assigned\_version]. The default value will be empty string. |
  | Sort Order  | Whether the sort order is ascending or descending. The property used for sorting is name. Possible values \[Asc, Desc]. Default value is Asc.                                                                |
</div>

## Example Output

```json theme={"dark"}
{
	"AdditionalInfo": {
		"Links": [],
		"id": 1234,
		"uuid": "939acb8b-cd21-4d3d-996c-984c1e28cdea"
	},
	"TotalResults": 1,
	"app_items": [
		{
			"assigned_version": "14.4",
			"assignment_status": "Assigned",
			"installed_status": "Installed",
			"installed_version": "12.1",
			"latest_uem_action": "InstallCommandReadyForDevice",
			"latest_uem_action_time": "2022-06-03T03:01:20.9673702+01:00",
			"name": "Application"
		}
	]
}
```

## Workflow Library Example

[List Apps with Workspace One Uem and Send Results Via Email](https://library.blinkops.com/workflows/list-apps-with-workspace-one-uem-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-apps-with-workspace-one-uem-and-send-results-via-email/canvas" />
</div>
