GET api/Job/GetTaskProblems?diomNr={diomNr}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| diomNr | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TaskProblemCounts| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount | integer |
None. |
|
| Pending | integer |
None. |
|
| Resolved | integer |
None. |
|
| Ignored | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalCount": 1,
"Pending": 2,
"Resolved": 1,
"Ignored": 3
}
text/html
Sample:
{"TotalCount":1,"Pending":2,"Resolved":1,"Ignored":3}
application/xml, text/xml
Sample:
<TaskProblemCounts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mediahuis.Models.Job"> <Ignored>3</Ignored> <Pending>2</Pending> <Resolved>1</Resolved> <TotalCount>1</TotalCount> </TaskProblemCounts>