POST workqueue/getWorkQueue
Request Information
URI Parameters
None.
Body Parameters
WorkQueueFilterDto| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| ShowId | integer |
None. |
|
| ResourceIds | Collection of integer |
None. |
|
| BranchIds | Collection of integer |
None. |
|
| ActivityIds | Collection of integer |
None. |
|
| SearchText | string |
None. |
|
| FilterIndex | integer |
None. |
|
| OrderBy | string |
None. |
|
| OrderDirection | string |
None. |
|
| PageNumber | integer |
None. |
|
| PageSize | integer |
None. |
|
| IsCreativeManager | boolean |
None. |
|
| Xlsx | boolean |
None. |
|
| SelectedViewId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"ShowId": 2,
"ResourceIds": [
1,
2
],
"BranchIds": [
1,
2
],
"ActivityIds": [
1,
2
],
"SearchText": "sample string 3",
"FilterIndex": 4,
"OrderBy": "sample string 5",
"OrderDirection": "sample string 6",
"PageNumber": 7,
"PageSize": 8,
"IsCreativeManager": true,
"Xlsx": true,
"SelectedViewId": 11
}
Response Information
Resource Description
WorkQueueDto| Name | Description | Type | Additional information |
|---|---|---|---|
| WorkQueue | Collection of WorkQueueItemDto |
None. |
|
| PageNumber | integer |
None. |
|
| MoreAvailable | boolean |
None. |
|
| TotalCount | integer |
None. |
|
| TotalCountWithoutFilter | integer |
None. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"WorkQueue": [
{
"ShowId": 1,
"ShowName": "sample string 2",
"FreemanShowNumber": 1,
"ShowAccountId": 3,
"ShowAccountTypeId": 4,
"AccountId": 5,
"MoveInDate": "sample string 6",
"AccountName": "sample string 7",
"LineItemId": 8,
"LineItemDescription": "sample string 9",
"LineItemType": "sample string 10",
"LineItemStageId": 11,
"StageType": "sample string 12",
"LineItemStatusId": 13,
"DueDate": "sample string 14",
"Branch": "sample string 15",
"Resource": "sample string 16",
"EmployeeNumber": "sample string 17",
"FileNumber": 18,
"FileName": "sample string 19",
"FileNotes": 20,
"SubmittedDate": "sample string 21",
"Status": "sample string 22",
"ShowOpenDate": "sample string 23",
"Activity": "sample string 24",
"isPastDueDate": "sample string 25",
"FileStatusId": 26,
"LocationId": 27,
"LocationName": "sample string 28",
"ShowCloseDate": "sample string 29",
"ProducingBranchName": "sample string 30"
},
{
"ShowId": 1,
"ShowName": "sample string 2",
"FreemanShowNumber": 1,
"ShowAccountId": 3,
"ShowAccountTypeId": 4,
"AccountId": 5,
"MoveInDate": "sample string 6",
"AccountName": "sample string 7",
"LineItemId": 8,
"LineItemDescription": "sample string 9",
"LineItemType": "sample string 10",
"LineItemStageId": 11,
"StageType": "sample string 12",
"LineItemStatusId": 13,
"DueDate": "sample string 14",
"Branch": "sample string 15",
"Resource": "sample string 16",
"EmployeeNumber": "sample string 17",
"FileNumber": 18,
"FileName": "sample string 19",
"FileNotes": 20,
"SubmittedDate": "sample string 21",
"Status": "sample string 22",
"ShowOpenDate": "sample string 23",
"Activity": "sample string 24",
"isPastDueDate": "sample string 25",
"FileStatusId": 26,
"LocationId": 27,
"LocationName": "sample string 28",
"ShowCloseDate": "sample string 29",
"ProducingBranchName": "sample string 30"
}
],
"PageNumber": 1,
"MoreAvailable": true,
"TotalCount": 3,
"TotalCountWithoutFilter": 4
}