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

Enumerates apps added to your organization with pagination. A subset of apps can be returned that match a supported filter expression or query.

<Note>
  External Documentation

  To learn more, visit the [Okta documentation](https://developer.okta.com/docs/api/openapi/okta-management/management/tag/Application/#tag/Application/operation/listApplications).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                 |
  | ---------------- | --------------------------------------------------------------------------------------------------------------------------- |
  | Expand           | Traverses users link relationship and optionally embeds Application User resource.                                          |
  | Filter           | Filters apps by status, user.id, group.id or credentials.signing.kid expression.                                            |
  | Limit            | Specifies the number of results for a page (maximum 200).                                                                   |
  | Query            | Searches the name or label property of applications using startsWith that matches what the string starts with to the query. |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                            |
</div>

## Example Output

```json theme={"dark"}
[
	{
		"id": "<string>",
		"orn": "<string>",
		"name": "<string>",
		"label": "<string>",
		"status": "<string>",
		"lastUpdated": "2004-12-12T09:44:48.750Z",
		"created": "2007-04-10T08:56:30.719Z",
		"accessibility": {
			"selfService": false,
			"errorRedirectUrl": null,
			"loginRedirectUrl": null
		},
		"visibility": {
			"autoSubmitToolbar": false,
			"hide": {
				"iOS": false,
				"web": false
			},
			"appLinks": {
				"admin": true
			}
		},
		"features": [],
		"signOnMode": "<string>",
		"credentials": {
			"userNameTemplate": {
				"template": "<string>",
				"type": "<string>"
			},
			"signing": {
				"kid": "<string>"
			}
		},
		"settings": {
			"app": {},
			"notifications": {
				"vpn": {
					"network": {
						"connection": "<string>"
					},
					"message": null,
					"helpUrl": null
				}
			},
			"manualProvisioning": false,
			"implicitAssignment": false
		},
		"_links": {
			"uploadLogo": {
				"href": "<string>",
				"hints": {
					"allow": [
						"<string>"
					]
				}
			},
			"appLinks": [
				{
					"name": "<string>",
					"href": "<string>",
					"type": "<string>"
				}
			],
			"profileEnrollment": {
				"href": "<string>"
			},
			"policies": {
				"href": "<string>",
				"hints": {
					"allow": [
						"<string>"
					]
				}
			},
			"groups": {
				"href": "<string>"
			},
			"logo": [
				{
					"name": "<string>",
					"href": "<string>",
					"type": "<string>"
				}
			],
			"accessPolicy": {
				"href": "<string>"
			},
			"users": {
				"href": "<string>"
			},
			"deactivate": {
				"href": "<string>"
			}
		}
	},
	{
		"id": "<string>",
		"orn": "<string>",
		"name": "<string>",
		"label": "<string>",
		"status": "<string>",
		"lastUpdated": "2021-04-18T07:01:12.686Z",
		"created": "2010-08-16T04:19:42.653Z",
		"accessibility": {
			"selfService": false,
			"errorRedirectUrl": null,
			"loginRedirectUrl": null
		},
		"visibility": {
			"autoSubmitToolbar": false,
			"hide": {
				"iOS": false,
				"web": false
			},
			"appLinks": {}
		},
		"features": [],
		"signOnMode": "<string>",
		"credentials": {
			"userNameTemplate": {
				"template": "<string>",
				"type": "<string>"
			},
			"signing": {
				"kid": "<string>"
			}
		},
		"settings": {
			"app": {},
			"notifications": {
				"vpn": {
					"network": {
						"connection": "<string>"
					},
					"message": null,
					"helpUrl": null
				}
			},
			"manualProvisioning": false,
			"implicitAssignment": false
		},
		"_links": {
			"uploadLogo": {
				"href": "<string>",
				"hints": {
					"allow": [
						"<string>"
					]
				}
			},
			"appLinks": [],
			"profileEnrollment": {
				"href": "<string>"
			},
			"policies": {
				"href": "<string>",
				"hints": {
					"allow": [
						"<string>"
					]
				}
			},
			"groups": {
				"href": "<string>"
			},
			"logo": [
				{
					"name": "<string>",
					"href": "<string>",
					"type": "<string>"
				}
			],
			"accessPolicy": {
				"href": "<string>"
			},
			"users": {
				"href": "<string>"
			},
			"deactivate": {
				"href": "<string>"
			}
		}
	}
]
```

## Workflow Library Example

[List Applications with Okta and Send Results Via Email](https://library.blinkops.com/workflows/list-applications-with-okta-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-applications-with-okta-and-send-results-via-email/canvas" />
</div>
