GET api/HGSharedData/GetTroubleshootings
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Troubleshooting| Name | Description | Type | Additional information |
|---|---|---|---|
| TroubleshootingID |
It represents the unique identity of a inspection type. |
integer |
None. |
| InspectionType |
It represents the inspection type (P-Home / T-Termite / R-Roof) |
string |
None. |
| Header |
It represents the troubleshooting header. |
string |
None. |
| Notes |
It represents the troubleshooting notes. |
string |
None. |
| TSort |
It represents sort order of the troubleshooting. |
integer |
None. |
Response Formats
application/json
Sample:
{
"TSort": 1,
"TroubleshootingID": 1,
"Notes": "sample string 3",
"Header": "sample string 2",
"InspectionType": "sample string 1"
}
application/xml, text/xml
Sample:
<Troubleshooting xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HomeguardApp.BusinessObjects.Shared"> <Header>sample string 2</Header> <InspectionType>sample string 1</InspectionType> <Notes>sample string 3</Notes> <TSort>1</TSort> <TroubleshootingID>1</TroubleshootingID> </Troubleshooting>