---
title: "List Applications"
method: GET
path: "/api/v1/app/{orgId}/list"
tags: ["Applications"]
deprecated: true
---

# List Applications

`GET /api/v1/app/{orgId}/list`

> **Deprecated.**

## List Applications

**First time here?** - use our [V2 applications](ref:listappsv2) API instead!

Lists applications that belong to this organization.

Returns a [paginated list](https://apidocs.stackhawk.com/docs/pagination-and-sorting) of Applications.

| Parameter | Default | Description |
|:---:|:---:|:---:|
|applications|[]|List of applications.|
|nextPageToken|""|PageToken to provide for the next page of results.|
|totalCount|0|Total number of results.|

### Application

Applications group scan results from HawkScan, and coordinate settings to influence HawkScan behavior. The application may also contain a specific environment name and id.
For more information, see [Applications](https://docs.stackhawk.com/web-app/applications.html).

| Parameter | Default | Description |
|:---:|:---:|:---:|
|applicationId|""|The UUID identifier of this application.|
|name|""|The name of this application.|
|env|""|The name of this environment. Only set when requesting Application Environments.|
|envId|""|The UUID identifier of this environment.|
|applicationStatus|"ACTIVE"|The status of this application. Either ACTIVE or ENV_INCOMPLETE.|
|organizationId|""|The UUID identifier of the organization that owns this application.|
|applicationType|"STANDARD"|The type of this application.|
|cloudScanTarget|{}|Optional Cloud Scan Target configuration.|

The returned list of applications is filtered by the User's API Token Team membership.


> Requires `read:application` permission.

## Path parameters

- `orgId` string, uuid, required

## Query parameters

- `appIds` string[]
- `envs` string[]
- `teamIds` string[]
- `ignoreEnvs` boolean
- `pageSize` integer
- `pageToken` integer
- `sortField` 'name' | 'id'
- `sortDir` 'asc' | 'desc'

## Response `200`

Paginated response of applications.

- ApplicationListApplicationsResponse — Paginated response of applications.
  - `applications` ApplicationApplication[] — List of applications.
    - `applicationId` string — The UUID identifier of this application.
    - `applicationStatus` 'ACTIVE' | 'ENV_INCOMPLETE' — The status of this application. Either ACTIVE or ENV_INCOMPLETE.
    - `applicationType` 'STANDARD' | 'CLOUD' — The type of this application.
    - `cloudScanTarget` ApplicationCloudScanTarget — Cloud Scan Target Configuration.
      - `isDomainVerified` boolean — Indicates if the domain is verified or not.
      - `targetURL` string — The target URL.
    - `dataType` 'NONE' | 'PII' | 'PCI' | 'FIN' | 'PKI' | 'HIPAA' | 'FERPA' — The perceived dataType of this application. Currently unused.
    - `env` string — The name of this environment. Only set when requesting Application Environments.
    - `envId` string — The UUID identifier of this environment.
    - `name` string — The name of this application.
    - `organizationId` string — The UUID identifier of the organization that owns this application.
    - `riskLevel` 'LOW' | 'MEDIUM' | 'HIGH' | 'CRITICAL' — The perceived riskLevel of this application. Currently unused.
  - `nextPageToken` string — PageToken to provide for the next page of results.
  - `totalCount` integer — Total number of results.

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.dev/stackhawk/apis/stackhawk-public-api.md) · [All operations](https://skmtc.dev/stackhawk/apis/stackhawk-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/stackhawk/stackhawk-public-api/revisions/8252990ac9eb/schema)
