POST api/SocialAudience/{SocialAudienceID}/StatusLogs?Period={Period}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SocialAudienceID | integer |
Required |
|
| Period | string |
Required |
Body Parameters
DataSourceRequestAPI| Name | Description | Type | Additional information |
|---|---|---|---|
| Aggregate | string |
None. |
|
| Filter | string |
None. |
|
| Group | string |
None. |
|
| Page | integer |
None. |
|
| PageSize | integer |
None. |
|
| Sort | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Aggregate": "sample string 1",
"Filter": "sample string 2",
"Group": "sample string 3",
"Page": 4,
"PageSize": 5,
"Sort": "sample string 6"
}
application/xml, text/xml
Sample:
<DataSourceRequestAPI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SM.CentralService.Filter"> <Aggregate>sample string 1</Aggregate> <Filter>sample string 2</Filter> <Group>sample string 3</Group> <Page>4</Page> <PageSize>5</PageSize> <Sort>sample string 6</Sort> </DataSourceRequestAPI>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DataSourceResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of Object |
None. |
|
| Total | integer |
None. |
|
| AggregateResults | Collection of AggregateResult |
None. |
|
| Errors | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
{},
{}
],
"Total": 1,
"AggregateResults": null,
"Errors": {}
}
application/xml, text/xml
Sample:
<DataSourceResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Kendo.Mvc.UI">
<AggregateResults xmlns:d2p1="http://schemas.datacontract.org/2004/07/Kendo.Mvc.Infrastructure" i:nil="true" />
<Data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:anyType />
<d2p1:anyType />
</Data>
<Errors />
<Total>1</Total>
</DataSourceResult>