POST api/SocialMonitorNew/GetKeywordsSummary
Request Information
URI Parameters
None.
Body Parameters
SocialDataInput| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerCode | string |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| Channels | string |
None. |
|
| Pages | string |
None. |
|
| ShowWithKeyWordOnly | boolean |
None. |
|
| KeyWord | string |
None. |
|
| UserID | string |
None. |
|
| LoggedUserID | integer |
None. |
|
| MatchKeywords | boolean |
None. |
|
| IsForSummary | boolean |
None. |
|
| IsForStats | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerCode": "sample string 1",
"StartDate": "17/12/2025 05:39",
"EndDate": "17/12/2025 05:39",
"Channels": "sample string 2",
"Pages": "sample string 3",
"ShowWithKeyWordOnly": true,
"KeyWord": "sample string 4",
"UserID": "sample string 5",
"LoggedUserID": 6,
"MatchKeywords": true,
"IsForSummary": true,
"IsForStats": true
}
application/xml, text/xml
Sample:
<SocialDataInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SM.Data.ViewModels"> <Channels>sample string 2</Channels> <CustomerCode>sample string 1</CustomerCode> <EndDate>2025-12-17T05:39:06.630487+00:00</EndDate> <IsForStats>true</IsForStats> <IsForSummary>true</IsForSummary> <KeyWord>sample string 4</KeyWord> <LoggedUserID>6</LoggedUserID> <MatchKeywords>true</MatchKeywords> <Pages>sample string 3</Pages> <ShowWithKeyWordOnly>true</ShowWithKeyWordOnly> <StartDate>2025-12-17T05:39:06.630487+00:00</StartDate> <UserID>sample string 5</UserID> </SocialDataInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of Keyword| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| KeyWord | string |
None. |
|
| AddedOn | date |
None. |
|
| TimesRecorded | integer |
None. |
|
| Positive | integer |
None. |
|
| Negative | integer |
None. |
|
| Neutral | integer |
None. |
|
| Category | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"KeyWord": "sample string 2",
"AddedOn": "17/12/2025 05:39",
"TimesRecorded": 3,
"Positive": 4,
"Negative": 5,
"Neutral": 6,
"Category": "sample string 7"
},
{
"ID": 1,
"KeyWord": "sample string 2",
"AddedOn": "17/12/2025 05:39",
"TimesRecorded": 3,
"Positive": 4,
"Negative": 5,
"Neutral": 6,
"Category": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfKeyword xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SM.Data.ViewModels">
<Keyword>
<AddedOn>2025-12-17T05:39:06.630487+00:00</AddedOn>
<Category>sample string 7</Category>
<ID>1</ID>
<KeyWord>sample string 2</KeyWord>
<Negative>5</Negative>
<Neutral>6</Neutral>
<Positive>4</Positive>
<TimesRecorded>3</TimesRecorded>
</Keyword>
<Keyword>
<AddedOn>2025-12-17T05:39:06.630487+00:00</AddedOn>
<Category>sample string 7</Category>
<ID>1</ID>
<KeyWord>sample string 2</KeyWord>
<Negative>5</Negative>
<Neutral>6</Neutral>
<Positive>4</Positive>
<TimesRecorded>3</TimesRecorded>
</Keyword>
</ArrayOfKeyword>