POST api/WorkTimeLine/GetWorkTimeLineList?DomainId={DomainId}&AccountId={AccountId}&PersonId={PersonId}
获取工作动态列表
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| DomainId |
域Id |
globally unique identifier |
None. |
| AccountId |
账户Id |
globally unique identifier |
None. |
| PersonId |
人员Id |
globally unique identifier |
None. |
Body Parameters
GetWorkTimeLineListDto| Name | Description | Type | Additional 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. |
|
| searchCustomer | string |
None. |
|
| DutyID | Collection of string |
None. |
|
| PersonID | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrgID": "c6b6d589-f057-4ab4-b916-873ae56ca901",
"PersonName": "sample string 2",
"tableName": "sample string 3",
"ChannelKey": "sample string 4",
"CustomerTypeKey": "sample string 5",
"F12": "sample string 6",
"startDate": "2025-12-17 05:43:19",
"endDate": "2025-12-17 05:43:19",
"pageIndex": 7,
"pageSize": 8,
"searchCustomer": "sample string 9",
"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>c6b6d589-f057-4ab4-b916-873ae56ca901</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-12-17T05:43:19.7905391+08:00</endDate>
<pageIndex>7</pageIndex>
<pageSize>8</pageSize>
<searchCustomer>sample string 9</searchCustomer>
<startDate>2025-12-17T05:43:19.7905391+08:00</startDate>
<tableName>sample string 3</tableName>
</GetWorkTimeLineListDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModelOfObject| Name | Description | Type | Additional 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>