POST API/EntranceGuard/EGBind
修改用户与房屋绑定关系中的门禁信息状态
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| Approve | 门禁审核信息 |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"residentId": "sample string 1",
"roomId": "sample string 2",
"ownerid": "sample string 3",
"leaseDateS": "2025-11-05T23:29:15.7034234+08:00",
"leaseDateE": "2025-11-05T23:29:15.7034234+08:00",
"residentType": 0
}
application/xml, text/xml
Sample:
<EGApprove xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GS.R.API4._0.Controllers"> <leaseDateE>2025-11-05T23:29:15.7034234+08:00</leaseDateE> <leaseDateS>2025-11-05T23:29:15.7034234+08:00</leaseDateS> <ownerid>sample string 3</ownerid> <residentId>sample string 1</residentId> <residentType>RESIDENT</residentType> <roomId>sample string 2</roomId> </EGApprove>
application/x-www-form-urlencoded
Sample:
Sample not available.