POST api/Dashboard_v1/GetTagsAutofill
Request Information
URI Parameters
None.
Body Parameters
TagsAutofill_v1| 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_v1 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_v1>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetTagsDataResponse_v1| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| tagsData | Collection of GetTagsData_v1 |
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_v1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TempleDirectory.Controllers">
<ResponseCode>1</ResponseCode>
<tagsData>
<GetTagsData_v1>
<Tag_ID>1</Tag_ID>
<Tag_Name>sample string 2</Tag_Name>
</GetTagsData_v1>
<GetTagsData_v1>
<Tag_ID>1</Tag_ID>
<Tag_Name>sample string 2</Tag_Name>
</GetTagsData_v1>
</tagsData>
</GetTagsDataResponse_v1>