Description
Add a new group.
Params
Name | Type | Description |
---|---|---|
apiKey | string | API key previously generated. |
name | string | Name. |
description | string | Description. |
position | integer | Position of the group on listing. |
enable | boolean | True if group is enabled. |
visible | boolean | True if group is visible. |
Returned data
Type: integer
Description: Return an integer with group id.
Json sample code
<?php $curl = curl_init('https://your_address/ccm/admin/api/version/2/&type=json'); $postData = array( 'function' => 'addGroup', 'apiKey' => 'apiKey', 'name' => 'My group', 'description' => 'Group description', 'position' => 1, 'enable' => true, 'visible' => true, ); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($postData)); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); $json = curl_exec($curl); if ($json === false) { die('Request failed with error: '. curl_error($curl)); } $result = json_decode($json); if ($result->status == 0) { die('Bad status returned. Error: '. $result->error); } var_dump($result->data);
Result of API call
int(16)