GET api/InspectionPhoto?inspectionId={inspectionId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
inspectionId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of InspectionImageName | Description | Type | Additional information |
---|---|---|---|
InspectionPhotoID | integer |
None. |
|
Path | string |
None. |
|
Description | string |
None. |
|
SignatureType | SignatureTypeEnum |
None. |
Response Formats
application/json, text/json
Sample:
[ { "InspectionPhotoID": 1, "Path": "sample string 2", "Description": "sample string 3", "SignatureType": 1 }, { "InspectionPhotoID": 1, "Path": "sample string 2", "Description": "sample string 3", "SignatureType": 1 } ]
application/xml, text/xml
Sample:
<ArrayOfInspectionImage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Soprema.BLL.Models.Warranties"> <InspectionImage> <Description>sample string 3</Description> <InspectionPhotoID>1</InspectionPhotoID> <Path>sample string 2</Path> <SignatureType>Contractor</SignatureType> </InspectionImage> <InspectionImage> <Description>sample string 3</Description> <InspectionPhotoID>1</InspectionPhotoID> <Path>sample string 2</Path> <SignatureType>Contractor</SignatureType> </InspectionImage> </ArrayOfInspectionImage>