GET api/ServiceProblem
Returns all the records in the SV_Problem table expect the default record
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ServiceProblem| Name | Description | Type | Additional information |
|---|---|---|---|
| ProblemId | integer |
None. |
|
| ProblemCode | string |
None. |
|
| Description | string |
None. |
|
| EstimatedTime | integer |
None. |
|
| Inactive | boolean |
None. |
|
| PriorityId | integer |
None. |
|
| ExpertiseLevel | integer |
None. |
|
| IsMaster | boolean |
None. |
|
| UseSedonaWeb | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ProblemId": 1,
"ProblemCode": "sample string 1",
"Description": "sample string 2",
"EstimatedTime": 1,
"Inactive": true,
"PriorityId": 1,
"ExpertiseLevel": 1,
"IsMaster": true,
"UseSedonaWeb": true
},
{
"ProblemId": 1,
"ProblemCode": "sample string 1",
"Description": "sample string 2",
"EstimatedTime": 1,
"Inactive": true,
"PriorityId": 1,
"ExpertiseLevel": 1,
"IsMaster": true,
"UseSedonaWeb": true
}
]
application/xml, text/xml
Sample:
<ArrayOfServiceProblem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SedonaServices.Models">
<ServiceProblem>
<Description>sample string 2</Description>
<EstimatedTime>1</EstimatedTime>
<ExpertiseLevel>1</ExpertiseLevel>
<Inactive>true</Inactive>
<IsMaster>true</IsMaster>
<PriorityId>1</PriorityId>
<ProblemCode>sample string 1</ProblemCode>
<ProblemId>1</ProblemId>
<UseSedonaWeb>true</UseSedonaWeb>
</ServiceProblem>
<ServiceProblem>
<Description>sample string 2</Description>
<EstimatedTime>1</EstimatedTime>
<ExpertiseLevel>1</ExpertiseLevel>
<Inactive>true</Inactive>
<IsMaster>true</IsMaster>
<PriorityId>1</PriorityId>
<ProblemCode>sample string 1</ProblemCode>
<ProblemId>1</ProblemId>
<UseSedonaWeb>true</UseSedonaWeb>
</ServiceProblem>
</ArrayOfServiceProblem>