PUT api/TemplateFilterCategories
Updates a template filter category.
Request Information
URI Parameters
None.
Body Parameters
The template filter category model to update with.
TemplatefilterCategoryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Values | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "6776ce77-cdd7-4a2f-a3b4-972e5a538fca",
"TenantId": "d23af3fe-823d-4044-aef0-e95524a0a871",
"Name": "sample string 3",
"Values": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<TemplatefilterCategoryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Template.Models">
<Id>6776ce77-cdd7-4a2f-a3b4-972e5a538fca</Id>
<Name>sample string 3</Name>
<TenantId>d23af3fe-823d-4044-aef0-e95524a0a871</TenantId>
<Values xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Values>
</TemplatefilterCategoryDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
None.