PUT api/Planner/Filters
Request Information
URI Parameters
None.
Body Parameters
Collection of FilterDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| All | boolean |
None. |
|
| Values | Collection of FilterValueDTO |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Name": "sample string 1",
"All": true,
"Values": [
{
"Value": 1
},
{
"Value": 1
}
]
},
{
"Name": "sample string 1",
"All": true,
"Values": [
{
"Value": 1
},
{
"Value": 1
}
]
}
]
application/xml, text/xml
Sample:
<ArrayOfFilterDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bluedock.Booking.Rest.Models.Planner">
<FilterDTO>
<All>true</All>
<Name>sample string 1</Name>
<Values>
<FilterValueDTO>
<Value>1</Value>
</FilterValueDTO>
<FilterValueDTO>
<Value>1</Value>
</FilterValueDTO>
</Values>
</FilterDTO>
<FilterDTO>
<All>true</All>
<Name>sample string 1</Name>
<Values>
<FilterValueDTO>
<Value>1</Value>
</FilterValueDTO>
<FilterValueDTO>
<Value>1</Value>
</FilterValueDTO>
</Values>
</FilterDTO>
</ArrayOfFilterDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.