GET api/StrutturaApp/{ID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
StrutturaAPP| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| TITOLO | string |
None. |
|
| PREZZO | string |
None. |
|
| MESSAGGIO | string |
None. |
|
| DISPONIBILE | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"TITOLO": "sample string 2",
"PREZZO": "sample string 3",
"MESSAGGIO": "sample string 4",
"DISPONIBILE": true
}
application/xml, text/xml
Sample:
<StrutturaAPP xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NowTicket_API.Models"> <DISPONIBILE>true</DISPONIBILE> <ID>1</ID> <MESSAGGIO>sample string 4</MESSAGGIO> <PREZZO>sample string 3</PREZZO> <TITOLO>sample string 2</TITOLO> </StrutturaAPP>