POST WEvalProject/GetArchiveBorrowList

Request Information

URI Parameters

None.

Body Parameters

ArchiveBorrowListRequest
NameDescriptionTypeAdditional information
UserId

string

None.

PageIndex

integer

None.

PageSize

integer

None.

KeyWord

string

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<ArchiveBorrowListRequest 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>
  <UserId>sample string 1</UserId>
</ArchiveBorrowListRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

RemoteResponseOfArchiveBorrowListResponse
NameDescriptionTypeAdditional information
success

boolean

None.

errors

string

None.

unauthed

boolean

None.

result

ArchiveBorrowListResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "errors": "sample string 2",
  "unauthed": true,
  "result": {
    "ArchiveBorrowList": [
      {
        "ID": 1,
        "PID": 2,
        "ProjectNo": "sample string 3",
        "PName": "sample string 4",
        "ApplyCount": 1,
        "ApplyTime": "2026-06-02T20:34:13.4766534+08:00",
        "BorrowPersonName": "sample string 5",
        "CurState": "sample string 6",
        "Status": "sample string 7"
      },
      {
        "ID": 1,
        "PID": 2,
        "ProjectNo": "sample string 3",
        "PName": "sample string 4",
        "ApplyCount": 1,
        "ApplyTime": "2026-06-02T20:34:13.4766534+08:00",
        "BorrowPersonName": "sample string 5",
        "CurState": "sample string 6",
        "Status": "sample string 7"
      }
    ],
    "Count": 1
  }
}

application/xml, text/xml

Sample:
<RemoteResponseOfArchiveBorrowListResponsedmGyRm56 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:ArchiveBorrowList>
      <d2p1:ArchiveBorrowItem>
        <d2p1:ApplyCount>1</d2p1:ApplyCount>
        <d2p1:ApplyTime>2026-06-02T20:34:13.4766534+08:00</d2p1:ApplyTime>
        <d2p1:BorrowPersonName>sample string 5</d2p1:BorrowPersonName>
        <d2p1:CurState>sample string 6</d2p1:CurState>
        <d2p1:ID>1</d2p1:ID>
        <d2p1:PID>2</d2p1:PID>
        <d2p1:PName>sample string 4</d2p1:PName>
        <d2p1:ProjectNo>sample string 3</d2p1:ProjectNo>
        <d2p1:Status>sample string 7</d2p1:Status>
      </d2p1:ArchiveBorrowItem>
      <d2p1:ArchiveBorrowItem>
        <d2p1:ApplyCount>1</d2p1:ApplyCount>
        <d2p1:ApplyTime>2026-06-02T20:34:13.4766534+08:00</d2p1:ApplyTime>
        <d2p1:BorrowPersonName>sample string 5</d2p1:BorrowPersonName>
        <d2p1:CurState>sample string 6</d2p1:CurState>
        <d2p1:ID>1</d2p1:ID>
        <d2p1:PID>2</d2p1:PID>
        <d2p1:PName>sample string 4</d2p1:PName>
        <d2p1:ProjectNo>sample string 3</d2p1:ProjectNo>
        <d2p1:Status>sample string 7</d2p1:Status>
      </d2p1:ArchiveBorrowItem>
    </d2p1:ArchiveBorrowList>
    <d2p1:Count>1</d2p1:Count>
  </Result>
  <Success>true</Success>
  <UnAuthorizedRequest>true</UnAuthorizedRequest>
</RemoteResponseOfArchiveBorrowListResponsedmGyRm56>