POST api/HGInspections/UploadImages

It is used to upload the images against a specific inspection batch wise using a valid batchid. This request should be a multipart request means it contains images and form-data. Add images to the key name "files" and supply acquired batchid from previous call to the key name "batchid"

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

It is used to upload the images against a specific inspection batch wise using a valid batchid. This request should be a multipart request means it contains images and form-data. Add images to the key name "files" and supply acquired batchid from previous call to the key name "batchid"

ResponseStatusModel
NameDescriptionTypeAdditional information
Status

It represents the status of current API call. status can be either "success" or "failed"

string

None.

Message

It represents the some description about the API response.

string

None.

Response Formats

application/json

Sample:
{
  "Message": "sample string 2",
  "Status": "sample string 1"
}

application/xml, text/xml

Sample:
<ResponseStatusModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HomeguardApp.Models">
  <Message>sample string 2</Message>
  <Status>sample string 1</Status>
</ResponseStatusModel>