GET api/MfGeoLocations
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of 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:42:39.5603112+00:00",
"UploadedAt": "2026-03-20T16:42:39.5603112+00:00",
"DriverLong": 5.1,
"DriverLat": 6.1,
"DriverLocation": null
},
{
"Id": 1,
"UserId": "sample string 2",
"CapturedAt": "2026-03-20T16:42:39.5603112+00:00",
"UploadedAt": "2026-03-20T16:42:39.5603112+00:00",
"DriverLong": 5.1,
"DriverLat": 6.1,
"DriverLocation": null
}
]
application/xml, text/xml
Sample:
<ArrayOfMfGeoLocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BookService.Models">
<MfGeoLocation>
<CapturedAt>2026-03-20T16:42:39.5603112+00:00</CapturedAt>
<DriverLat>6.1</DriverLat>
<DriverLocation xmlns:d3p1="http://schemas.datacontract.org/2004/07/System.Data.Entity.Spatial" i:nil="true" />
<DriverLong>5.1</DriverLong>
<Id>1</Id>
<UploadedAt>2026-03-20T16:42:39.5603112+00:00</UploadedAt>
<UserId>sample string 2</UserId>
</MfGeoLocation>
<MfGeoLocation>
<CapturedAt>2026-03-20T16:42:39.5603112+00:00</CapturedAt>
<DriverLat>6.1</DriverLat>
<DriverLocation xmlns:d3p1="http://schemas.datacontract.org/2004/07/System.Data.Entity.Spatial" i:nil="true" />
<DriverLong>5.1</DriverLong>
<Id>1</Id>
<UploadedAt>2026-03-20T16:42:39.5603112+00:00</UploadedAt>
<UserId>sample string 2</UserId>
</MfGeoLocation>
</ArrayOfMfGeoLocation>