POST GeofenceGroup
Create a new Group.
Request Information
URI Parameters
None.
Body Parameters
A AssetGroupRestItem object
Collection of GeofenceGroupRestItem| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Internal Primary Key. |
integer |
None. |
| Name |
Internal Primary Key. |
string |
None. |
| Geofences |
List of GeofenceId's. |
Collection of integer |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Name": "sample string 2",
"Geofences": [
1,
2
]
},
{
"Id": 1,
"Name": "sample string 2",
"Geofences": [
1,
2
]
}
]
application/xml, text/xml
Sample:
<ArrayOfGeofenceGroupRestItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api360.Models">
<GeofenceGroupRestItem>
<Geofences xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:int>1</d3p1:int>
<d3p1:int>2</d3p1:int>
</Geofences>
<Id>1</Id>
<Name>sample string 2</Name>
</GeofenceGroupRestItem>
<GeofenceGroupRestItem>
<Geofences xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:int>1</d3p1:int>
<d3p1:int>2</d3p1:int>
</Geofences>
<Id>1</Id>
<Name>sample string 2</Name>
</GeofenceGroupRestItem>
</ArrayOfGeofenceGroupRestItem>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
GeoFenceGroupRestResult| Name | Description | Type | Additional information |
|---|---|---|---|
| RestItems |
Collection of GeoFenceRestItem objects. |
Collection of GeofenceGroupRestItem |
None. |
Response Formats
application/json, text/json
Sample:
{
"RestItems": [
{
"Id": 1,
"Name": "sample string 2",
"Geofences": [
1,
2
]
},
{
"Id": 1,
"Name": "sample string 2",
"Geofences": [
1,
2
]
}
]
}
application/xml, text/xml
Sample:
<GeoFenceGroupRestResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api360.Models">
<RestItems>
<GeofenceGroupRestItem>
<Geofences xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:int>1</d4p1:int>
<d4p1:int>2</d4p1:int>
</Geofences>
<Id>1</Id>
<Name>sample string 2</Name>
</GeofenceGroupRestItem>
<GeofenceGroupRestItem>
<Geofences xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:int>1</d4p1:int>
<d4p1:int>2</d4p1:int>
</Geofences>
<Id>1</Id>
<Name>sample string 2</Name>
</GeofenceGroupRestItem>
</RestItems>
</GeoFenceGroupRestResult>