POST API/EntranceGuard/VisitorLog

添加访客密码获取日志

Request Information

Parameters

NameDescriptionAdditional information
elog
访客日志{communityId:小区ID,egId:房屋ID,residentId:业主ID,date:获取访客密码日期}

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "communityId": "sample string 1",
  "residentId": "sample string 2",
  "egId": "sample string 3",
  "date": "sample string 4"
}

application/xml, text/xml

Sample:
<EGLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GS.R.API4._0.Controllers">
  <communityId>sample string 1</communityId>
  <date>sample string 4</date>
  <egId>sample string 3</egId>
  <residentId>sample string 2</residentId>
</EGLog>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'EGLog'.