[comment]: # ({26c09afa-26c09afa})
# application.get

[comment]: # ({/26c09afa-26c09afa})

[comment]: # ({6436c8c1-93a0de6c})
### 说明

`integer/array application.get(object parameters)`

该方法用于根据规定的参数获取应用集。

[comment]: # ({/6436c8c1-93a0de6c})

[comment]: # ({338750cd-f9f00f02})
### 参数

`(object)` 定义所需输出的参数。

该方法提供以下参数。

|Parameter|Type|Description|
|---------|----|-----------|
|applicationids|string/array|只返回指定 ID 的应用集。|
|groupids|string/array|只返回指定主机组所属主机的应用集。|
|hostids|string/array|只返回指定主机所属的应用集。|
|inherited|boolean|如果设定为`true`，只返回继承该模板的应用集。|
|itemids|string/array|只返回包含特定监控项的应用集。|
|templated|boolean|如果设定为`true`，只返回属于该模板的应用集。|
|templateids|string/array|只返回指定模板的应用集。|
|selectHost|query|返回值中会包括应用集所属的`主机名`属性。|
|selectItems|query|返回值中会应用集包含的`监控项`属性。|
|selectDiscoveryRule|query|返回值中会包括应用集的`底层自动发现规则`属性。|
|selectApplicationDiscovery|query|返回值中会包括应用集发现的对象属性。|
|sortfield|string/array|使用规定的属性将结果分类。<br><br>可能的值：`applicationid` 和`name`。|
|countOutput|boolean|在 [reference commentary](/zh/manual/api/reference_commentary#common_get_method_parameters) 中详细描述了所有"get"方法的相关参数.|
|editable|boolean|^|
|excludeSearch|boolean|^|
|filter|object|^|
|limit|integer|^|
|output|query|^|
|preservekeys|boolean|^|
|search|object|^|
|searchByAny|boolean|^|
|searchWildcardsEnabled|boolean|^|
|sortorder|string/array|^|
|startSearch|boolean|^|

[comment]: # ({/338750cd-f9f00f02})

[comment]: # ({cf351973-7223bab1})
### 返回值

`(integer/array)` 返回两者其中之一:

-   an array of objects;
-   如果已经使用了“countOutput”参数，则检索对象的计数.

[comment]: # ({/cf351973-7223bab1})

[comment]: # ({392bbd85-b41637d2})
### 范例

[comment]: # ({/392bbd85-b41637d2})

[comment]: # ({a3f9037f-9b31f6ab})
#### 从主机中检索应用集

从主机中根据名称排序检索所有的应用集。

请求:

``` {.java}
{
    "jsonrpc": "2.0",
    "method": "application.get",
    "params": {
        "output": "extend",
        "hostids": "10001",
        "sortfield": "name"
    },
    "auth": "038e1d7b1735c6a5436ee9eae095879e",
    "id": 1
}
```

响应:

``` {.java}
{
    "jsonrpc": "2.0",
    "result": [
        {
            "applicationid": "13",
            "hostid": "10001",
            "name": "CPU",
            "templateids": []
        },
        {
            "applicationid": "5",
            "hostid": "10001",
            "name": "Filesystems",
            "templateids": []
        },
        {
            "applicationid": "21",
            "hostid": "10001",
            "name": "General",
            "templateids": []
        },
        {
            "applicationid": "15",
            "hostid": "10001",
            "name": "Memory",
            "templateids": []
        },
    ],
    "id": 1
}
```

[comment]: # ({/a3f9037f-9b31f6ab})

[comment]: # ({1c57700e-1c57700e})
### See also

-   [Host](/manual/api/reference/host/object#host)
-   [Item](/manual/api/reference/item/object#item)

[comment]: # ({/1c57700e-1c57700e})

[comment]: # ({72c4d792-cb98f793})
### Source

CApplication::get() in
*frontends/php/include/classes/api/services/CApplication.php*.

### Description

`integer/array application.get(object parameters)`

The method allows to retrieve applications according to the given
parameters.

### Parameters

`(object)` Parameters defining the desired output.

The method supports the following parameters.

|Parameter|Type|Description|
|---------|----|-----------|
|applicationids|string/array|Return only applications with the given IDs.|
|groupids|string/array|Return only applications that belong to hosts from the given host groups.|
|hostids|string/array|Return only applications that belong to the given hosts.|
|inherited|boolean|If set to `true` return only applications inherited from a template.|
|itemids|string/array|Return only applications that contain the given items.|
|templated|boolean|If set to `true` return only applications that belong to templates.|
|templateids|string/array|Return only applications that belong to the given templates.|
|selectHost|query|Return the host that the application belongs to in the `host` property.|
|selectItems|query|Return the items contained in the application in the `items` property.|
|selectDiscoveryRule|query|Return the LLD rule that created the application in the `discoveryRule` property.|
|selectApplicationDiscovery|query|Return the application discovery object in the `applicationDiscovery` property.|
|sortfield|string/array|Sort the result by the given properties.<br><br>Possible values are: `applicationid` and `name`.|
|countOutput|boolean|These parameters being common for all `get` methods are described in detail in the [reference commentary](/manual/api/reference_commentary#common_get_method_parameters) page.|
|editable|boolean|^|
|excludeSearch|boolean|^|
|filter|object|^|
|limit|integer|^|
|output|query|^|
|preservekeys|boolean|^|
|search|object|^|
|searchByAny|boolean|^|
|searchWildcardsEnabled|boolean|^|
|sortorder|string/array|^|
|startSearch|boolean|^|

### Return values

`(integer/array)` Returns either:

-   an array of objects;
-   the count of retrieved objects, if the `countOutput` parameter has
    been used.

### Examples

#### Retrieving applications from a host

Retrieve all applications from a host sorted by name.

Request:

``` {.java}
{
    "jsonrpc": "2.0",
    "method": "application.get",
    "params": {
        "output": "extend",
        "hostids": "10001",
        "sortfield": "name"
    },
    "auth": "038e1d7b1735c6a5436ee9eae095879e",
    "id": 1
}
```

Response:

``` {.java}
{
    "jsonrpc": "2.0",
    "result": [
        {
            "applicationid": "13",
            "hostid": "10001",
            "name": "CPU",
            "templateids": []
        },
        {
            "applicationid": "5",
            "hostid": "10001",
            "name": "Filesystems",
            "templateids": []
        },
        {
            "applicationid": "21",
            "hostid": "10001",
            "name": "General",
            "templateids": []
        },
        {
            "applicationid": "15",
            "hostid": "10001",
            "name": "Memory",
            "templateids": []
        },
    ],
    "id": 1
}
```

[comment]: # ({/72c4d792-cb98f793})
