POST api/v1/measurement/createGeneralGroup?siteService={siteService}
Creates a new general group
CygNet Access Requirements
CygNet ACS security: BRDGAPI ACCESS 3
CygNet Bridge API license type: Base
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| siteService |
CygNet site and service (Site.Service) of the FMS Service |
string |
Required |
Body Parameters
Request object containing the data for the new general group
| Name | Description | Type | Additional information |
|---|---|---|---|
| fmsGeneralGroup |
Fms general group details |
FmsGeneralGroupDTO |
Required |
Request Formats
application/json, text/json
Sample:
{
"fmsGeneralGroup": {
"beginActiveDate": "2000-01-01T00:00:00",
"endActiveDate": "3000-12-31T00:00:00",
"name": "GeneralGroup",
"description": "New General Group",
"siteService": "",
"facilityId": "",
"sortPriority": 0,
"securityApp": "",
"categoryName": "Job",
"generalUniqueType": "None"
}
}
Response Information
Resource Description
The properties of the new group
| Name | Description | Type | Additional information |
|---|---|---|---|
| nodeId |
Node ID of the group |
integer |
None |
| fmsGeneralGroup |
Fms general group details |
FmsGeneralGroupDTO |
None |
Response Formats
application/json, text/json
Sample:
{
"nodeId": 2,
"fmsGeneralGroup": {
"beginActiveDate": "2000-01-01T00:00:00",
"endActiveDate": "3000-12-31T00:00:00",
"name": "GeneralGroup",
"description": "New General Group",
"siteService": "",
"facilityId": "",
"sortPriority": 0,
"securityApp": "",
"categoryName": "Job",
"generalUniqueType": "None"
}
}