GET api/DripPoint/GetMacrocategorie
Restituisce le macrocategorie disponibili per i Drip Point
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of MacrocategoriaModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Identificatore univoco della macrocategoria. |
integer |
None. |
| Nome |
Nome della macrocategoria (es. "Vendere", "Riparare", "Donare"). |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Nome": "sample string 2"
},
{
"Id": 1,
"Nome": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfMacrocategoriaModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DripApi.Models">
<MacrocategoriaModel>
<Id>1</Id>
<Nome>sample string 2</Nome>
</MacrocategoriaModel>
<MacrocategoriaModel>
<Id>1</Id>
<Nome>sample string 2</Nome>
</MacrocategoriaModel>
</ArrayOfMacrocategoriaModel>