POST api/Filters/FilterNameExists/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
FiltersParameterDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| CategoryId | integer |
None. |
|
| Values | Collection of Collection of string |
None. |
|
| ExportAll | boolean |
None. |
|
| ForLabor | boolean |
None. |
|
| IsDirty | boolean |
None. |
|
| FilterKeyUid | globally unique identifier |
None. |
|
| PrevCategoryId | integer |
None. |
|
| PrevFilterName | string |
None. |
|
| PrevIsBalustrade | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"name": "sample string 1",
"categoryId": 2,
"values": [
[
"sample string 1",
"sample string 2"
],
[
"sample string 1",
"sample string 2"
]
],
"exportAll": true,
"forLabor": true,
"isDirty": true,
"filterKeyUid": "108d8710-6eef-44d3-ae3d-b4b5b600d883",
"prevCategoryId": 7,
"prevFilterName": "sample string 8",
"prevIsBalustrade": true
}
application/xml, text/xml
Sample:
<FiltersParameterDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.Dto">
<CategoryId>2</CategoryId>
<ExportAll>true</ExportAll>
<FilterKeyUid>108d8710-6eef-44d3-ae3d-b4b5b600d883</FilterKeyUid>
<ForLabor>true</ForLabor>
<IsDirty>true</IsDirty>
<Name>sample string 1</Name>
<PrevCategoryId>7</PrevCategoryId>
<PrevFilterName>sample string 8</PrevFilterName>
<PrevIsBalustrade>true</PrevIsBalustrade>
<Values xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:ArrayOfstring>
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</d2p1:ArrayOfstring>
<d2p1:ArrayOfstring>
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</d2p1:ArrayOfstring>
</Values>
</FiltersParameterDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>