DELETE GeofenceGroup/{id}
Delete a Group based on it's id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Internal Id to the Geofence |
integer |
Required |
Body Parameters
None.
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>