# 创建

### 描述

`object hostinterface.create(object/array hostInterfaces)`

该方法允许创建新的主机接口.

### 参数

`(对象/数组)`
创建主机接口,该方法接受[标准主机接口属性](object#host_interface)的主机接口.

### 返回值

`(对象)`
在`interfaceids`属性中返回已创建主机接口ID的对象.返回的ID顺序与传入的主机接口顺序保持一致.

### 示例

#### 创建主机接口

给ID为30052主机创建辅助IP代理接口

请求:

``` {.java}
{
    "jsonrpc": "2.0",
    "method": "hostinterface.create",
    "params": {
        "hostid": "30052",
        "dns": "",
        "ip": "127.0.0.1",
        "main": 0,
        "port": "10050",
        "type": 1,
        "useip": 1
    },
    "auth": "038e1d7b1735c6a5436ee9eae095879e",
    "id": 1
}
```

响应:

``` {.java}
{
    "jsonrpc": "2.0",
    "result": {
        "interfaceids": [
            "30062"
        ]
    },
    "id": 1
}
```

### 参考

-   [hostinterface.massadd](massadd)
-   [host.massadd](/manual/api/reference/host/massadd)

### 来源

CHostInterface::create() in
*frontends/php/include/classes/api/services/CHostInterface.php*.
