GET api/user_tracking_period?user_id={user_id}&fDt={fDt}&tDt={tDt}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
user_id

string

None.

fDt

date

None.

tDt

date

None.

Body Parameters

None.

Response Information

Resource Description

Collection of user_tracking_period
NameDescriptionTypeAdditional information
User_Id

integer

None.

User_Nm

string

None.

TRACK_DT_TIME

date

None.

LATITUDE

decimal number

None.

LONGITUDE

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "User_Id": 1,
    "User_Nm": "sample string 1",
    "TRACK_DT_TIME": "2026-04-16T21:46:40.611244+05:30",
    "LATITUDE": 1.0,
    "LONGITUDE": 1.0
  },
  {
    "User_Id": 1,
    "User_Nm": "sample string 1",
    "TRACK_DT_TIME": "2026-04-16T21:46:40.611244+05:30",
    "LATITUDE": 1.0,
    "LONGITUDE": 1.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfuser_tracking_period xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ControllerLibrary">
  <user_tracking_period>
    <LATITUDE>1</LATITUDE>
    <LONGITUDE>1</LONGITUDE>
    <TRACK_DT_TIME>2026-04-16T21:46:40.611244+05:30</TRACK_DT_TIME>
    <User_Id>1</User_Id>
    <User_Nm>sample string 1</User_Nm>
  </user_tracking_period>
  <user_tracking_period>
    <LATITUDE>1</LATITUDE>
    <LONGITUDE>1</LONGITUDE>
    <TRACK_DT_TIME>2026-04-16T21:46:40.611244+05:30</TRACK_DT_TIME>
    <User_Id>1</User_Id>
    <User_Nm>sample string 1</User_Nm>
  </user_tracking_period>
</ArrayOfuser_tracking_period>