POST api/Cases/UploadObservationImageV2
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
PhotosStoredDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| OnlineObservationUUID | globally unique identifier |
None. |
|
| ID | integer |
None. |
|
| PhotoName | string |
None. |
|
| ConfirmedSaved | boolean |
None. |
|
| OnlinePhotoId | integer |
None. |
|
| Video | boolean |
None. |
|
| MimeType | string |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"OnlineObservationUUID": "5d095eac-0499-4299-be21-6720e8bf9d47",
"ID": 2,
"PhotoName": "sample string 3",
"ConfirmedSaved": true,
"OnlinePhotoId": 5,
"Video": true,
"MimeType": "sample string 7",
"ErrorMessage": "sample string 8"
}
text/xml
Sample:
<PhotosStoredDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/gbddcwebapi.Models"> <ConfirmedSaved>true</ConfirmedSaved> <ErrorMessage>sample string 8</ErrorMessage> <ID>2</ID> <MimeType>sample string 7</MimeType> <OnlineObservationUUID>5d095eac-0499-4299-be21-6720e8bf9d47</OnlineObservationUUID> <OnlinePhotoId>5</OnlinePhotoId> <PhotoName>sample string 3</PhotoName> <Video>true</Video> </PhotosStoredDTO>