GetSocialMediaActionLog
Interface Function
Obtain the action log of Like/Share/favourite of the specified document.
Request Parameter
Parameter | TYPE | REMARK |
---|---|---|
FormAlias | String | Form alias, the identity of the form |
DataId | String | The Id of the document, can be seen from the preview address |
SocialMediaType | SocialMediaTypeEnum | Share = 1, Favourite = 2,Like=3 |
PageIndex | int | default=1 |
PageSize | int | default=100 |
Return Data Type
public class ResponseModel
{
public int Total { get; set; }
public List<Dictionary<string,object>> Data { get; set; }
}
Input Sample
{
"DataId": "feaeb16fe61a47e9ab83d35a625c6bdc",
"FormAlias": "DemoFormAlias",
"socialMediaType":2,
"pageIndex":1,
"pageSize":20
}
Return Sample
{
"StatusCode": 200,
"Info": "Request (or process) succeeded",
"Data": {
"Total": 1,
"Data": [
{
"StaffId": "3a920db8-695c-4ca1-934b-ab47bd871cd8",
"StaffName": "DemoUser",
"ActionTime": 1568015961259
}
]
}
}