DELETE api/MfGeoLocations/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
MfGeoLocation| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| UserId | string |
Required Max length: 50 |
|
| CapturedAt | date |
None. |
|
| UploadedAt | date |
None. |
|
| DriverLong | decimal number |
None. |
|
| DriverLat | decimal number |
None. |
|
| DriverLocation | DbGeography |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"UserId": "sample string 2",
"CapturedAt": "2026-03-20T16:44:44.2154511+00:00",
"UploadedAt": "2026-03-20T16:44:44.2154511+00:00",
"DriverLong": 5.1,
"DriverLat": 6.1,
"DriverLocation": null
}
application/xml, text/xml
Sample:
<MfGeoLocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BookService.Models"> <CapturedAt>2026-03-20T16:44:44.2154511+00:00</CapturedAt> <DriverLat>6.1</DriverLat> <DriverLocation xmlns:d2p1="http://schemas.datacontract.org/2004/07/System.Data.Entity.Spatial" i:nil="true" /> <DriverLong>5.1</DriverLong> <Id>1</Id> <UploadedAt>2026-03-20T16:44:44.2154511+00:00</UploadedAt> <UserId>sample string 2</UserId> </MfGeoLocation>