POST WEvalProject/ScheduleList

我的调度列表

Request Information

URI Parameters

None.

Body Parameters

ScheduleListRequest
NameDescriptionTypeAdditional information
UserId

string

None.

PageIndex

integer

None.

PageSize

integer

None.

KeyWord

string

None.

ProjectState

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "sample string 1",
  "PageIndex": 1,
  "PageSize": 1,
  "KeyWord": "sample string 2",
  "ProjectState": "sample string 3"
}

application/xml, text/xml

Sample:
<ScheduleListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model">
  <KeyWord>sample string 2</KeyWord>
  <PageIndex>1</PageIndex>
  <PageSize>1</PageSize>
  <ProjectState>sample string 3</ProjectState>
  <UserId>sample string 1</UserId>
</ScheduleListRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoteResponseOfScheduleListResponse
NameDescriptionTypeAdditional information
success

boolean

None.

errors

string

None.

unauthed

boolean

None.

result

ScheduleListResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "errors": "sample string 2",
  "unauthed": true,
  "result": {
    "ScheduleList": [
      {
        "ProjectNo": "sample string 1",
        "ProjectName": "sample string 2",
        "ConsigneeName": "sample string 3",
        "LinkerPhone": "sample string 4",
        "CreatedDataTime": "2026-06-02T20:32:47.0716045+08:00"
      },
      {
        "ProjectNo": "sample string 1",
        "ProjectName": "sample string 2",
        "ConsigneeName": "sample string 3",
        "LinkerPhone": "sample string 4",
        "CreatedDataTime": "2026-06-02T20:32:47.0716045+08:00"
      }
    ],
    "Count": 1
  }
}

application/xml, text/xml

Sample:
<RemoteResponseOfScheduleListResponsedmGyRm56 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GJ.Biz.Model">
  <Errors>sample string 2</Errors>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/GJ.WEM.Biz.Model">
    <d2p1:Count>1</d2p1:Count>
    <d2p1:ScheduleList>
      <d2p1:ScheduleInfo>
        <d2p1:ConsigneeName>sample string 3</d2p1:ConsigneeName>
        <d2p1:CreatedDataTime>2026-06-02T20:32:47.0716045+08:00</d2p1:CreatedDataTime>
        <d2p1:LinkerPhone>sample string 4</d2p1:LinkerPhone>
        <d2p1:ProjectName>sample string 2</d2p1:ProjectName>
        <d2p1:ProjectNo>sample string 1</d2p1:ProjectNo>
      </d2p1:ScheduleInfo>
      <d2p1:ScheduleInfo>
        <d2p1:ConsigneeName>sample string 3</d2p1:ConsigneeName>
        <d2p1:CreatedDataTime>2026-06-02T20:32:47.0716045+08:00</d2p1:CreatedDataTime>
        <d2p1:LinkerPhone>sample string 4</d2p1:LinkerPhone>
        <d2p1:ProjectName>sample string 2</d2p1:ProjectName>
        <d2p1:ProjectNo>sample string 1</d2p1:ProjectNo>
      </d2p1:ScheduleInfo>
    </d2p1:ScheduleList>
  </Result>
  <Success>true</Success>
  <UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfScheduleListResponsedmGyRm56>