POST Log/Create
记录日志
Request Information
URI Parameters
None.
Body Parameters
CreateLogPars| Name | Description | Type | Additional information |
|---|---|---|---|
| fdid |
家庭成员id |
integer |
None. |
| type |
日志类型 1=》游戏(飞机) 2=》教程 3=》儿歌1 4=》儿歌2 5=》儿歌3 6=》儿歌4 |
string |
None. |
| info |
日志内容 传递=》开始、结束 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"code": "200",
"data": {
"fdid": 1,
"type": "sample string 2",
"info": "sample string 3"
},
"msg": null
}
application/xml, text/xml
Sample:
<CreateLogPars xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HL.Basis.Web.Models.Parameter"> <fdid>1</fdid> <info>sample string 3</info> <type>sample string 2</type> </CreateLogPars>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
记录日志
booleanResponse Formats
application/json, text/json
Sample:
{
"code": "200",
"data": true,
"msg": null
}
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>