GET api/ServiceResolution

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ServiceResolution
NameDescriptionTypeAdditional information
ResolutionId

Sedona internal autonumber for the SV_Resolution record

integer

None.

ResolutionCode

Abbreviated Resolution_Code, from SV_Resolution table

string

String length: inclusive between 0 and 25

Description

string

String length: inclusive between 0 and 50

Billable

Is the code billable

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ResolutionId": 1,
    "ResolutionCode": "sample string 2",
    "Description": "sample string 3",
    "Billable": true
  },
  {
    "ResolutionId": 1,
    "ResolutionCode": "sample string 2",
    "Description": "sample string 3",
    "Billable": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfServiceResolution xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SedonaServices.Models">
  <ServiceResolution>
    <Billable>true</Billable>
    <Description>sample string 3</Description>
    <ResolutionCode>sample string 2</ResolutionCode>
    <ResolutionId>1</ResolutionId>
  </ServiceResolution>
  <ServiceResolution>
    <Billable>true</Billable>
    <Description>sample string 3</Description>
    <ResolutionCode>sample string 2</ResolutionCode>
    <ResolutionId>1</ResolutionId>
  </ServiceResolution>
</ArrayOfServiceResolution>