POST api/WorkTimeLine/GetWorkTimeLineList?DomainId={DomainId}&AccountId={AccountId}&PersonId={PersonId}

获取工作动态列表

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DomainId

域Id

globally unique identifier

None.

AccountId

账户Id

globally unique identifier

None.

PersonId

人员Id

globally unique identifier

None.

Body Parameters

GetWorkTimeLineListDto
NameDescriptionTypeAdditional information
OrgID

globally unique identifier

None.

PersonName

string

None.

tableName

string

None.

ChannelKey

string

None.

CustomerTypeKey

string

None.

F12

string

None.

startDate

date

None.

endDate

date

None.

pageIndex

integer

None.

pageSize

integer

None.

DutyID

Collection of string

None.

PersonID

Collection of string

None.

Request Formats

application/json, text/json

Sample:
{
  "OrgID": "d544d010-d916-4569-90f4-42c13c74b044",
  "PersonName": "sample string 2",
  "tableName": "sample string 3",
  "ChannelKey": "sample string 4",
  "CustomerTypeKey": "sample string 5",
  "F12": "sample string 6",
  "startDate": "2025-06-23 21:28:54",
  "endDate": "2025-06-23 21:28:54",
  "pageIndex": 7,
  "pageSize": 8,
  "DutyID": [
    "sample string 1",
    "sample string 2"
  ],
  "PersonID": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<GetWorkTimeLineListDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Entity.DTO.ApiDTO">
  <ChannelKey>sample string 4</ChannelKey>
  <CustomerTypeKey>sample string 5</CustomerTypeKey>
  <DutyID xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </DutyID>
  <F12>sample string 6</F12>
  <OrgID>d544d010-d916-4569-90f4-42c13c74b044</OrgID>
  <PersonID xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </PersonID>
  <PersonName>sample string 2</PersonName>
  <endDate>2025-06-23T21:28:54.4118343+08:00</endDate>
  <pageIndex>7</pageIndex>
  <pageSize>8</pageSize>
  <startDate>2025-06-23T21:28:54.4118343+08:00</startDate>
  <tableName>sample string 3</tableName>
</GetWorkTimeLineListDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResultModelOfObject
NameDescriptionTypeAdditional information
Code

ReturnCode

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Code": 200,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<ResultModelOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JT.VSFA.Utility">
  <Code>Success</Code>
  <Data />
  <Message>sample string 1</Message>
</ResultModelOfanyType>