GET api/TimeTrack/GetTimeTracActivities?date={date}&userId={userId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
date

date

Required

userId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TimeTrackData
NameDescriptionTypeAdditional information
Id

integer

None.

UserId

string

None.

LoggedDate

date

None.

ProjectId

integer

None.

ExternalProjectId

integer

None.

TaskId

integer

None.

AccountTypeId

integer

None.

WorkTypeId

integer

None.

MachineTypeId

integer

None.

Time

integer

None.

Project

string

None.

Task

string

None.

Notes

string

None.

IsApproved

boolean

None.

ExternalProject

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "UserId": "sample string 2",
    "LoggedDate": "2025-12-17T14:46:17.7703351+01:00",
    "ProjectId": 1,
    "ExternalProjectId": 1,
    "TaskId": 4,
    "AccountTypeId": 5,
    "WorkTypeId": 6,
    "MachineTypeId": 1,
    "Time": 7,
    "Project": "sample string 8",
    "Task": "sample string 9",
    "Notes": "sample string 10",
    "IsApproved": true,
    "ExternalProject": "sample string 12"
  },
  {
    "Id": 1,
    "UserId": "sample string 2",
    "LoggedDate": "2025-12-17T14:46:17.7703351+01:00",
    "ProjectId": 1,
    "ExternalProjectId": 1,
    "TaskId": 4,
    "AccountTypeId": 5,
    "WorkTypeId": 6,
    "MachineTypeId": 1,
    "Time": 7,
    "Project": "sample string 8",
    "Task": "sample string 9",
    "Notes": "sample string 10",
    "IsApproved": true,
    "ExternalProject": "sample string 12"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTimeTrackData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nokon.Nappen.Core.ViewModels">
  <TimeTrackData>
    <AccountTypeId>5</AccountTypeId>
    <ExternalProject>sample string 12</ExternalProject>
    <ExternalProjectId>1</ExternalProjectId>
    <Id>1</Id>
    <IsApproved>true</IsApproved>
    <LoggedDate xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
      <d3p1:DateTime>2025-12-17T13:46:17.7703351Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>60</d3p1:OffsetMinutes>
    </LoggedDate>
    <MachineTypeId>1</MachineTypeId>
    <Notes>sample string 10</Notes>
    <Project>sample string 8</Project>
    <ProjectId>1</ProjectId>
    <Task>sample string 9</Task>
    <TaskId>4</TaskId>
    <Time>7</Time>
    <UserId>sample string 2</UserId>
    <WorkTypeId>6</WorkTypeId>
  </TimeTrackData>
  <TimeTrackData>
    <AccountTypeId>5</AccountTypeId>
    <ExternalProject>sample string 12</ExternalProject>
    <ExternalProjectId>1</ExternalProjectId>
    <Id>1</Id>
    <IsApproved>true</IsApproved>
    <LoggedDate xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
      <d3p1:DateTime>2025-12-17T13:46:17.7703351Z</d3p1:DateTime>
      <d3p1:OffsetMinutes>60</d3p1:OffsetMinutes>
    </LoggedDate>
    <MachineTypeId>1</MachineTypeId>
    <Notes>sample string 10</Notes>
    <Project>sample string 8</Project>
    <ProjectId>1</ProjectId>
    <Task>sample string 9</Task>
    <TaskId>4</TaskId>
    <Time>7</Time>
    <UserId>sample string 2</UserId>
    <WorkTypeId>6</WorkTypeId>
  </TimeTrackData>
</ArrayOfTimeTrackData>