GET
api/v1/get-default-filters?clientId={clientId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId | integer |
Required |
Response Information
Description:
Return type: Collection of DefaultFilter
Response Formats
application/json, text/json
[
{
"Id": 1,
"FormFieldId": 2,
"FormFieldName": "sample string 3",
"FormFieldValueId": 4,
"FormFieldValueName": "sample string 5",
"ResponseDataGUID": "a1c59333-0f02-4b34-8726-824789692e45"
},
{
"Id": 1,
"FormFieldId": 2,
"FormFieldName": "sample string 3",
"FormFieldValueId": 4,
"FormFieldValueName": "sample string 5",
"ResponseDataGUID": "a1c59333-0f02-4b34-8726-824789692e45"
}
]
text/html
[{"Id":1,"FormFieldId":2,"FormFieldName":"sample string 3","FormFieldValueId":4,"FormFieldValueName":"sample string 5","ResponseDataGUID":"a1c59333-0f02-4b34-8726-824789692e45"},{"Id":1,"FormFieldId":2,"FormFieldName":"sample string 3","FormFieldValueId":4,"FormFieldValueName":"sample string 5","ResponseDataGUID":"a1c59333-0f02-4b34-8726-824789692e45"}]
application/xml, text/xml
<ArrayOfDefaultFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.RequestOperations.Product">
<DefaultFilter>
<FormFieldId>2</FormFieldId>
<FormFieldName>sample string 3</FormFieldName>
<FormFieldValueId>4</FormFieldValueId>
<FormFieldValueName>sample string 5</FormFieldValueName>
<Id>1</Id>
<ResponseDataGUID>a1c59333-0f02-4b34-8726-824789692e45</ResponseDataGUID>
</DefaultFilter>
<DefaultFilter>
<FormFieldId>2</FormFieldId>
<FormFieldName>sample string 3</FormFieldName>
<FormFieldValueId>4</FormFieldValueId>
<FormFieldValueName>sample string 5</FormFieldValueName>
<Id>1</Id>
<ResponseDataGUID>a1c59333-0f02-4b34-8726-824789692e45</ResponseDataGUID>
</DefaultFilter>
</ArrayOfDefaultFilter>
