POST api/EditMappingController/GetHashTags
Request Information
URI Parameters
None.
Body Parameters
HashTagParamModel| Name | Description | Type | Additional information |
|---|---|---|---|
| length | integer |
None. |
|
| start | integer |
None. |
|
| sortCol | integer |
None. |
|
| sortColDir | string |
None. |
|
| sSearch | string |
None. |
|
| mappingKey | string |
None. |
|
| hashtagKey | string |
None. |
|
| mode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"length": 1,
"start": 2,
"sortCol": 3,
"sortColDir": "sample string 4",
"sSearch": "sample string 5",
"mappingKey": "sample string 6",
"hashtagKey": "sample string 7",
"mode": "sample string 8"
}
application/xml, text/xml
Sample:
<HashTagParamModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OauthApi.Models"> <hashtagKey>sample string 7</hashtagKey> <length>1</length> <mappingKey>sample string 6</mappingKey> <mode>sample string 8</mode> <sSearch>sample string 5</sSearch> <sortCol>3</sortCol> <sortColDir>sample string 4</sortColDir> <start>2</start> </HashTagParamModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
dtResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| draw | integer |
None. |
|
| recordsTotal | integer |
None. |
|
| recordsFiltered | integer |
None. |
|
| data | DataTable |
None. |
|
| error | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"draw": 1,
"recordsTotal": 2,
"recordsFiltered": 3,
"data": null,
"error": "sample string 4"
}
application/xml, text/xml
Sample:
<dtResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OauthApi.Controllers"> <data i:nil="true" /> <draw>1</draw> <error>sample string 4</error> <recordsFiltered>3</recordsFiltered> <recordsTotal>2</recordsTotal> </dtResponse>