This is a translation of the original English documentation page. Help us make it better.

service.update

Description

object service.update(object/array services)

Cette méthode permet de mettre à jour les services existants.

Cette méthode est disponible à tous les types d'utilisateurs. Les autorisations d'appeler la méthode peuvent être révoquées dans les paramètres du le rôle d'utilisateur. Voir Rôles Utilisateur pour plus d'informations.

Parameters

(object/array) service properties to be updated.

The serviceid property must be defined for each service, all other properties are optional. Only the passed properties will be updated, all others will remain unchanged.

Additionally to the standard service properties, the method accepts the following parameters.

Parameter Type Description
dependencies array Service dependencies to replace the current service dependencies.

Each service dependency has the following parameters:
- dependsOnServiceid - (string) ID of an service the service depends on, that is, the child service.
- soft - (integer) type of service dependency; refer to the service dependency object page for more information on dependency types.
parentid string ID of a hard-linked parent service.
times array Service times to replace the current service times.

Valeurs retournées

(object) Retourne un objet contenant les identifiants des services mis à jour sous la propriété serviceids.

Exemples

Définition du parent d'un service

Faites en sorte que le service avec l'ID "3" soit le parent du service avec l'ID "5".

Requête :

{
           "jsonrpc": "2.0",
           "method": "service.update",
           "params": {
               "serviceid": "5",
               "parents": [
                   {
                       "serviceid": "3"
                   }
               ]
           },
           "auth": "038e1d7b1735c6a5436ee9eae095879e",
           "id": 1
       }

Réponse :

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

Ajout d'un temps d'arrêt planifié

Ajoutez un temps d'arrêt pour le service avec l'ID "4" programmé chaque semaine du lundi 22h00 au mardi 10h00.

Requête :

{
           "jsonrpc": "2.0",
           "method": "service.update",
           "params": {
               "serviceid": "4",
               "times": [
                   {
                       "type": "1",
                       "ts_from": "165600",
                       "ts_to": "201600"
                   }
               ]
           },
           "auth": "038e1d7b1735c6a5436ee9eae095879e",
           "id": 1
       }

Réponse :

{
           "jsonrpc": "2.0",
           "result": {
               "serviceids": [
                   "4"
               ]
           },
           "id": 1
       }

Source

CService::update() dans ui/include/classes/api/services/CService.php.