[comment]: # translation:outdated

[comment]: # ({f5d7e62f-f5d7e62f})
# service.create

[comment]: # ({/f5d7e62f-f5d7e62f})

[comment]: # ({new-c44d5a50})
### Description

`object service.create(object/array services)`

This method allows to create new services.

::: noteclassic
This method is available to users of any type. Permissions
to call the method can be revoked in user role settings. See [User
roles](/manual/web_interface/frontend_sections/administration/user_roles)
for more information.
:::

[comment]: # ({/new-c44d5a50})

[comment]: # ({new-1ec946f5})
### Parameters

`(object/array)` services to create.

Additionally to the [standard service properties](object#service), the
method accepts the following parameters.

| Parameter     | [Type](/manual/api/reference_commentary#data_types) | Description                                                                                                 |
|---------------|-----------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
| children      | array                                               | Child services to be linked to the service.<br><br>The children must have the `serviceid` property defined. |
| parents       | array                                               | Parent services to be linked to the service.<br><br>The parents must have the `serviceid` property defined. |
| tags          | array                                               | Service [tags](/manual/api/reference/service/object#service_tag) to be created for the service.             |
| problem\_tags | array                                               | [Problem tags](/manual/api/reference/service/object#problem_tag) to be created for the service.             |
| status\_rules | array                                               | [Status rules](/manual/api/reference/service/object#status_rule) to be created for the service.             |

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

[comment]: # ({f5eb6cfd-f5eb6cfd})
### Restituisce i valori

`(object)` Restituisce un oggetto contenente gli ID dei servizi creati
sotto la proprietà `serviceids`. L'ordine degli ID restituiti corrisponde a
ordine dei servizi passati.

[comment]: # ({/f5eb6cfd-f5eb6cfd})

[comment]: # ({b41637d2-b41637d2})
### Esempi

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

[comment]: # ({new-1607e64a})
#### Creating a service

Create a service that will be switched to problem state, if at least one
child has a problem.

Request:

``` {.java}
{
    "jsonrpc": "2.0",
    "method": "service.create",
    "params": {
        "name": "Server 1",
        "algorithm": 1,
        "sortorder": 1
    },
    "auth": "038e1d7b1735c6a5436ee9eae095879e",
    "id": 1
}
```

Response:

``` {.java}
{
    "jsonrpc": "2.0",
    "result": {
        "serviceids": [
            "5"
        ]
    },
    "id": 1
}
```

[comment]: # ({/new-1607e64a})

[comment]: # ({fda6729e-fda6729e})
### Fonte

CService::create() in *ui/include/classes/api/services/CService.php*.

[comment]: # ({/fda6729e-fda6729e})
