POST api/SocialMonitorNew/GetKeywordsSummary

Request Information

URI Parameters

None.

Body Parameters

SocialDataInput
NameDescriptionTypeAdditional 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": "16/10/2025 02:44",
  "EndDate": "16/10/2025 02:44",
  "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-10-16T02:44:29.9777028+01: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-10-16T02:44:29.9777028+01:00</StartDate>
  <UserID>sample string 5</UserID>
</SocialDataInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Keyword
NameDescriptionTypeAdditional 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": "16/10/2025 02:44",
    "TimesRecorded": 3,
    "Positive": 4,
    "Negative": 5,
    "Neutral": 6,
    "Category": "sample string 7"
  },
  {
    "ID": 1,
    "KeyWord": "sample string 2",
    "AddedOn": "16/10/2025 02:44",
    "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-10-16T02:44:29.9939822+01: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-10-16T02:44:29.9939822+01: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>