GET api/ServiceProblem/{id}

Returns the specified Service Problem

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

ServiceProblem
NameDescriptionTypeAdditional 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
}

application/xml, text/xml

Sample:
<ServiceProblem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SedonaServices.Models">
  <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>