---
title: "Gets the information about an application deployed on a Service Fabric node."
method: GET
path: "/Nodes/{nodeName}/$/GetApplications/{applicationId}"
tags: ["Application"]
---

# Gets the information about an application deployed on a Service Fabric node.

`GET /Nodes/{nodeName}/$/GetApplications/{applicationId}`

This query returns system application information if the application ID provided is for system application. Results encompass deployed applications in active, activating, and downloading states. This query requires that the node name corresponds to a node on the cluster. The query fails if the provided node name does not point to any active Service Fabric nodes on the cluster.

## Path parameters

- `nodeName` string, required
- `applicationId` string, required

## Query parameters

- `api-version` '6.1', required
- `timeout` integer
- `IncludeHealthState` boolean

## Response `200`

A successful operation will return 200 status code and the information about the deployed application.

- DeployedApplicationInfo — Information about application deployed on the node.
  - `Id` string — The identity of the application. This is an encoded representation of the application name. This is used in the REST APIs to identify the application resource. Starting in version 6.0, hierarchical names are delimited with the "\~" character. For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp\~app1" in 6.0+ and "myapp/app1" in previous versions.
  - `Name` string — The name of the application, including the 'fabric:' URI scheme.
  - `TypeName` string — The application type name as defined in the application manifest.
  - `Status` 'Invalid' | 'Downloading' | 'Activating' | 'Active' | 'Upgrading' | 'Deactivating' — The status of the application deployed on the node. Following are the possible values.
  - `WorkDirectory` string — The work directory of the application on the node. The work directory can be used to store application data.
  - `LogDirectory` string — The log directory of the application on the node. The log directory can be used to store application logs.
  - `TempDirectory` string — The temp directory of the application on the node. The code packages belonging to the application are forked with this directory set as their temporary directory.
  - `HealthState` 'Invalid' | 'Ok' | 'Warning' | 'Error' | 'Unknown' — The health state of a Service Fabric entity such as Cluster, Node, Application, Service, Partition, Replica etc.

## Other responses

- `204` — An empty response is returned if the specified application is not deployed on the node.
- `default` — The detailed error response.

---

[API](https://skmtc.net/azure/apis/service-fabric-client-apis.md) · [All operations](https://skmtc.net/azure/apis/service-fabric-client-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/azure/service-fabric-client-apis/versions/6df9f2f4d542/schema)
