POST api/GV?articolo={articolo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| articolo | string |
Required |
Body Parameters
None.
Response Information
Resource Description
GVDettaglioProdotto| Name | Description | Type | Additional information |
|---|---|---|---|
| stato | integer |
None. |
|
| taglia | integer |
None. |
|
| articolo_id | integer |
None. |
|
| prezzo_custom | decimal number |
None. |
|
| taglia_desc | string |
None. |
|
| negozio_id | integer |
None. |
|
| stato_desc | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"stato": 1,
"taglia": 2,
"articolo_id": 3,
"prezzo_custom": 4.1,
"taglia_desc": "sample string 5",
"negozio_id": 6,
"stato_desc": "sample string 7"
}
application/xml, text/xml
Sample:
<GVDettaglioProdotto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/vuoto1.Models"> <articolo_id>3</articolo_id> <negozio_id>6</negozio_id> <prezzo_custom>4.1</prezzo_custom> <stato>1</stato> <stato_desc>sample string 7</stato_desc> <taglia>2</taglia> <taglia_desc>sample string 5</taglia_desc> </GVDettaglioProdotto>