POST WEvalMcp/GetWorkHoursList

Request Information

URI Parameters

None.

Body Parameters

WorkHoursMcpRequest
NameDescriptionTypeAdditional information
UserName

string

None.

ProjectName

string

None.

StartTime

date

None.

EndTime

date

None.

ApprovalStatus

string

None.

WorkHourType

string

None.

PageIndex

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "ProjectName": "sample string 2",
  "StartTime": "2026-06-02T20:34:51.2471797+08:00",
  "EndTime": "2026-06-02T20:34:51.2471797+08:00",
  "ApprovalStatus": "sample string 3",
  "WorkHourType": "sample string 4",
  "PageIndex": 1,
  "PageSize": 1
}

application/xml, text/xml

Sample:
<WorkHoursMcpRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eaglet.Entity.Criteria">
  <ApprovalStatus>sample string 3</ApprovalStatus>
  <EndTime>2026-06-02T20:34:51.2471797+08:00</EndTime>
  <PageIndex>1</PageIndex>
  <PageSize>1</PageSize>
  <ProjectName>sample string 2</ProjectName>
  <StartTime>2026-06-02T20:34:51.2471797+08:00</StartTime>
  <UserName>sample string 1</UserName>
  <WorkHourType>sample string 4</WorkHourType>
</WorkHoursMcpRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

McpResult
NameDescriptionTypeAdditional information
success

boolean

None.

data

Object

None.

message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "data": {},
  "message": "sample string 3"
}

application/xml, text/xml

Sample:
<McpResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Eaglet.Entity.Criteria">
  <data />
  <message>sample string 3</message>
  <success>true</success>
</McpResult>