POST api/Dashboard/GetTagsAutofill
Request Information
URI Parameters
None.
Body Parameters
TagsAutofill| Name | Description | Type | Additional information |
|---|---|---|---|
| TagExprsn | string |
None. |
|
| TagIds | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TagExprsn": "sample string 1",
"TagIds": "sample string 2"
}
application/xml, text/xml
Sample:
<TagsAutofill xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TempleDirectory.Controllers"> <TagExprsn>sample string 1</TagExprsn> <TagIds>sample string 2</TagIds> </TagsAutofill>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetTagsDataResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| tagsData | Collection of GetTagsData |
None. |
Response Formats
application/json, text/json
Sample:
{
"tagsData": [
{
"Tag_ID": 1,
"Tag_Name": "sample string 2"
},
{
"Tag_ID": 1,
"Tag_Name": "sample string 2"
}
],
"ResponseCode": 1
}
application/xml, text/xml
Sample:
<GetTagsDataResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TempleDirectory.Controllers">
<ResponseCode>1</ResponseCode>
<tagsData>
<GetTagsData>
<Tag_ID>1</Tag_ID>
<Tag_Name>sample string 2</Tag_Name>
</GetTagsData>
<GetTagsData>
<Tag_ID>1</Tag_ID>
<Tag_Name>sample string 2</Tag_Name>
</GetTagsData>
</tagsData>
</GetTagsDataResponse>