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

valuemap.create

Description

object valuemap.create(object/array valuemaps)

This method allows to create new value maps.

This method is only available to Super admin user type. Permissions to call the method can be revoked in user role settings. See User roles for more information.

Parameters

(object/array) Value maps to create.

The method accepts value maps with the standard value map properties.

Return values

(object) Returns an object containing the IDs of the created value maps the valuemapids property. The order of the returned IDs matches the order of the passed value maps.

Esempi

Creating a value map

Create one value map with two mappings.

Request:

{
           "jsonrpc": "2.0",
           "method": "valuemap.create",
           "params": {
               "hostid": "50009",
               "name": "Service state",
               "mappings": [
                   {
                       "type": "1",
                       "value": "1",
                       "newvalue": "Up"
                   },
                   {
                       "type": "5",
                       "newvalue": "Down"
                   }
               ]
           },
           "auth": "57562fd409b3b3b9a4d916d45207bbcb",
           "id": 1
       }

Response:

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

Fonte

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