GET api/filters/agelevels
V2 - This method retrieves the available agegroups for the specified vendorkey.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
A list of AgeLevelFilters
Collection of AgeLevelDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
The internal ID for this Age level. |
integer |
Required |
| Name |
The name for this Age level. |
string |
Required |
| Description |
The description for this Age level. |
string |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Name": "sample string 2",
"Description": "sample string 3"
},
{
"ID": 1,
"Name": "sample string 2",
"Description": "sample string 3"
}
]
text/javascript
Sample:
[{"ID":1,"Name":"sample string 2","Description":"sample string 3"},{"ID":1,"Name":"sample string 2","Description":"sample string 3"}]
application/xml, text/xml
Sample:
<ArrayOfAgeLevelDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Yindo.DAL.Types">
<AgeLevelDetails>
<Description>sample string 3</Description>
<ID>1</ID>
<Name>sample string 2</Name>
</AgeLevelDetails>
<AgeLevelDetails>
<Description>sample string 3</Description>
<ID>1</ID>
<Name>sample string 2</Name>
</AgeLevelDetails>
</ArrayOfAgeLevelDetails>