POST api/Task/GetLogList

获取作业日志列表

Request Information

URI Parameters

None.

Body Parameters

TaskLogListRequest
NameDescriptionTypeAdditional information
TaskId

string

None.

StartDate

string

None.

EndDate

string

None.

Keyword

string

None.

PageIndex

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "TaskId": "sample string 1",
  "StartDate": "sample string 2",
  "EndDate": "sample string 3",
  "Keyword": "sample string 4",
  "PageIndex": 5,
  "PageSize": 6
}

application/xml, text/xml

Sample:
<TaskLogListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yidu.Model.TO.Request">
  <Keyword>sample string 4</Keyword>
  <PageIndex>5</PageIndex>
  <PageSize>6</PageSize>
  <EndDate>sample string 3</EndDate>
  <StartDate>sample string 2</StartDate>
  <TaskId>sample string 1</TaskId>
</TaskLogListRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResultOfListResponseOfTaskLogVO
NameDescriptionTypeAdditional information
Code

ApiCode

None.

Message

string

None.

Body

ListResponseOfTaskLogVO

None.

IsSuccess

boolean

None.

SubCode

SubCode

None.

SubMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": 0,
  "Message": "sample string 1",
  "Body": {
    "List": [
      {
        "Id": "sample string 1",
        "Remark": "sample string 2",
        "Description": "sample string 3",
        "CreateTime": "2024-10-19T13:23:25.5773542+08:00",
        "TaskName": "sample string 5"
      },
      {
        "Id": "sample string 1",
        "Remark": "sample string 2",
        "Description": "sample string 3",
        "CreateTime": "2024-10-19T13:23:25.5773542+08:00",
        "TaskName": "sample string 5"
      }
    ],
    "TotalCount": 1
  },
  "IsSuccess": true,
  "SubCode": 0,
  "SubMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ApiResultOfListResponseOfTaskLogVOx3AL3METrUIxL1Kj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yidu.Model.TO">
  <Body xmlns:d2p1="http://schemas.datacontract.org/2004/07/Yidu.Model.TO.Response">
    <d2p1:List xmlns:d3p1="http://schemas.datacontract.org/2004/07/Yidu.Model.VO">
      <d3p1:TaskLogVO>
        <d3p1:CreateTime>2024-10-19T13:23:25.5773542+08:00</d3p1:CreateTime>
        <d3p1:Description>sample string 3</d3p1:Description>
        <d3p1:Id>sample string 1</d3p1:Id>
        <d3p1:Remark>sample string 2</d3p1:Remark>
        <d3p1:TaskName>sample string 5</d3p1:TaskName>
      </d3p1:TaskLogVO>
      <d3p1:TaskLogVO>
        <d3p1:CreateTime>2024-10-19T13:23:25.5773542+08:00</d3p1:CreateTime>
        <d3p1:Description>sample string 3</d3p1:Description>
        <d3p1:Id>sample string 1</d3p1:Id>
        <d3p1:Remark>sample string 2</d3p1:Remark>
        <d3p1:TaskName>sample string 5</d3p1:TaskName>
      </d3p1:TaskLogVO>
    </d2p1:List>
    <d2p1:TotalCount>1</d2p1:TotalCount>
  </Body>
  <Code>Success</Code>
  <Message>sample string 1</Message>
  <SubCode>Success</SubCode>
  <SubMessage>sample string 2</SubMessage>
</ApiResultOfListResponseOfTaskLogVOx3AL3METrUIxL1Kj>