GET api/Inspection
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Inspection| Name | Description | Type | Additional information |
|---|---|---|---|
| InspectionId | integer |
None. |
|
| InspectionName | string |
None. |
|
| InspectionStatus | boolean |
None. |
|
| CreatedDate | date |
Data type: DateTime |
|
| CreatedBy | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"InspectionId": 1,
"InspectionName": "sample string 2",
"InspectionStatus": true,
"CreatedDate": "2025-12-08T01:53:27.7832242+05:30",
"CreatedBy": "sample string 5"
},
{
"InspectionId": 1,
"InspectionName": "sample string 2",
"InspectionStatus": true,
"CreatedDate": "2025-12-08T01:53:27.7832242+05:30",
"CreatedBy": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfInspection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netsoft.Domain.Entities">
<Inspection>
<CreatedBy>sample string 5</CreatedBy>
<CreatedDate>2025-12-08T01:53:27.7832242+05:30</CreatedDate>
<InspectionId>1</InspectionId>
<InspectionName>sample string 2</InspectionName>
<InspectionStatus>true</InspectionStatus>
</Inspection>
<Inspection>
<CreatedBy>sample string 5</CreatedBy>
<CreatedDate>2025-12-08T01:53:27.7832242+05:30</CreatedDate>
<InspectionId>1</InspectionId>
<InspectionName>sample string 2</InspectionName>
<InspectionStatus>true</InspectionStatus>
</Inspection>
</ArrayOfInspection>