GET api/MetricTypes
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of MetricType| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Description | string |
Required |
|
| IsDeleted | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Description": "sample string 2",
"IsDeleted": true
},
{
"Id": 1,
"Description": "sample string 2",
"IsDeleted": true
}
]
application/xml, text/xml
Sample:
<ArrayOfMetricType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Vekta.Data">
<MetricType>
<Description>sample string 2</Description>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
</MetricType>
<MetricType>
<Description>sample string 2</Description>
<Id>1</Id>
<IsDeleted>true</IsDeleted>
</MetricType>
</ArrayOfMetricType>