GET api/TimesheetCommentSpecificMandate/GetTimeSheetCommentSpecificMandate?companyId={companyId}&customerNumber={customerNumber}&cutOffDate={cutOffDate}&isNational={isNational}&draftNumber={draftNumber}&projectId={projectId}&level1Id={level1Id}&level2Id={level2Id}

GET api/[controller]/[companyId]/[customerNumber]/[cutOffDate]/[isNational(true|false)]/[draftNumber]

Request Information

URI Parameters

NameDescriptionTypeAdditional information
companyId

string

Required

customerNumber

string

Required

cutOffDate

date

Required

isNational

boolean

Required

draftNumber

string

Required

projectId

string

Required

level1Id

string

Required

level2Id

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of TimesheetComment
NameDescriptionTypeAdditional information
ProjectId

string

None.

Level1Id

string

None.

Level2Id

string

None.

ExecutionDepartmentId

string

None.

TransactionDate

date

None.

ResourceId

string

None.

ResourceName

string

None.

HoursQuantity

decimal number

None.

BillableRate

decimal number

None.

BillableAmount

decimal number

None.

Comment

string

None.

IsExpense

integer

None.

ErrorCode

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProjectId": "sample string 1",
    "Level1Id": "sample string 2",
    "Level2Id": "sample string 3",
    "ExecutionDepartmentId": "sample string 4",
    "TransactionDate": "2025-12-11T10:26:56.7458287-05:00",
    "ResourceId": "sample string 6",
    "ResourceName": "sample string 7",
    "HoursQuantity": 8.0,
    "BillableRate": 9.0,
    "BillableAmount": 10.0,
    "Comment": "sample string 11",
    "IsExpense": 12,
    "ErrorCode": 13
  },
  {
    "ProjectId": "sample string 1",
    "Level1Id": "sample string 2",
    "Level2Id": "sample string 3",
    "ExecutionDepartmentId": "sample string 4",
    "TransactionDate": "2025-12-11T10:26:56.7458287-05:00",
    "ResourceId": "sample string 6",
    "ResourceName": "sample string 7",
    "HoursQuantity": 8.0,
    "BillableRate": 9.0,
    "BillableAmount": 10.0,
    "Comment": "sample string 11",
    "IsExpense": 12,
    "ErrorCode": 13
  }
]

application/xml, text/xml

Sample:
<ArrayOfTimesheetComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Jovaco.WebServices.Web.Models">
  <TimesheetComment>
    <BillableAmount>10</BillableAmount>
    <BillableRate>9</BillableRate>
    <Comment>sample string 11</Comment>
    <ErrorCode>13</ErrorCode>
    <ExecutionDepartmentId>sample string 4</ExecutionDepartmentId>
    <HoursQuantity>8</HoursQuantity>
    <IsExpense>12</IsExpense>
    <Level1Id>sample string 2</Level1Id>
    <Level2Id>sample string 3</Level2Id>
    <ProjectId>sample string 1</ProjectId>
    <ResourceId>sample string 6</ResourceId>
    <ResourceName>sample string 7</ResourceName>
    <TransactionDate>2025-12-11T10:26:56.7458287-05:00</TransactionDate>
  </TimesheetComment>
  <TimesheetComment>
    <BillableAmount>10</BillableAmount>
    <BillableRate>9</BillableRate>
    <Comment>sample string 11</Comment>
    <ErrorCode>13</ErrorCode>
    <ExecutionDepartmentId>sample string 4</ExecutionDepartmentId>
    <HoursQuantity>8</HoursQuantity>
    <IsExpense>12</IsExpense>
    <Level1Id>sample string 2</Level1Id>
    <Level2Id>sample string 3</Level2Id>
    <ProjectId>sample string 1</ProjectId>
    <ResourceId>sample string 6</ResourceId>
    <ResourceName>sample string 7</ResourceName>
    <TransactionDate>2025-12-11T10:26:56.7458287-05:00</TransactionDate>
  </TimesheetComment>
</ArrayOfTimesheetComment>