POST api/DripPoint/AppendPhoto?IdPointDrip={IdPointDrip}
Aggiunge una foto al Drip Point
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| IdPointDrip | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
DripImage| Name | Description | Type | Additional information |
|---|---|---|---|
| UrlImage |
URL dell'immagine |
string |
None. |
| Id |
Id univoco dell'immagine |
integer |
None. |
| Order |
Ordine di visualizzazione dell'immagine |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"UrlImage": "sample string 1",
"Id": 2,
"Order": 3
}
application/xml, text/xml
Sample:
<DripImage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DripApi.Models.DripPoint"> <Id>2</Id> <Order>3</Order> <UrlImage>sample string 1</UrlImage> </DripImage>