GET api/MfMapMarkers?activeOnly={activeOnly}&userId={userId}&yesterdayOnly={yesterdayOnly}&todayOnly={todayOnly}&from={from}&to={to}&maxRowsPerUser={maxRowsPerUser}&ignoreGeoLocs={ignoreGeoLocs}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
activeOnly

boolean

Required

userId

string

Required

yesterdayOnly

boolean

Required

todayOnly

boolean

Required

from

date

Required

to

date

Required

maxRowsPerUser

integer

Required

ignoreGeoLocs

boolean

Required

Body Parameters

None.

Response Information

Resource Description

Collection of MfMapMarker
NameDescriptionTypeAdditional information
Id

integer

None.

Rowtype

string

None.

UserId

string

None.

DriverLong

decimal number

None.

DriverLat

decimal number

None.

CapturedAt

date

None.

rank_number

integer

None.

TransType

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Rowtype": "sample string 2",
    "UserId": "sample string 3",
    "DriverLong": 4.1,
    "DriverLat": 5.1,
    "CapturedAt": "2026-03-20T16:44:44.1999385+00:00",
    "rank_number": 7,
    "TransType": "sample string 8"
  },
  {
    "Id": 1,
    "Rowtype": "sample string 2",
    "UserId": "sample string 3",
    "DriverLong": 4.1,
    "DriverLat": 5.1,
    "CapturedAt": "2026-03-20T16:44:44.1999385+00:00",
    "rank_number": 7,
    "TransType": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMfMapMarker xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BookService.Models">
  <MfMapMarker>
    <CapturedAt>2026-03-20T16:44:44.1999385+00:00</CapturedAt>
    <DriverLat>5.1</DriverLat>
    <DriverLong>4.1</DriverLong>
    <Id>1</Id>
    <Rowtype>sample string 2</Rowtype>
    <TransType>sample string 8</TransType>
    <UserId>sample string 3</UserId>
    <rank_number>7</rank_number>
  </MfMapMarker>
  <MfMapMarker>
    <CapturedAt>2026-03-20T16:44:44.1999385+00:00</CapturedAt>
    <DriverLat>5.1</DriverLat>
    <DriverLong>4.1</DriverLong>
    <Id>1</Id>
    <Rowtype>sample string 2</Rowtype>
    <TransType>sample string 8</TransType>
    <UserId>sample string 3</UserId>
    <rank_number>7</rank_number>
  </MfMapMarker>
</ArrayOfMfMapMarker>