Add the provided Assa Abloy IP lock mode to the folder. Returns ()
Overview of AddAssaAbloyIPLockModeAsync goes here.
| Name | Description |
|---|---|
| folder | The folder to create the IP lock mode in |
| item | The IP lock mode information to create |
| schedule | The schedule to associate with the lock mode |
Example in C#
// Returns: AssaAbloyIPLockModeInfo
var assaAbloyIPLockModeInfo = await client.AddAssaAbloyIPLockModeAsync(FolderInfo folder, ScheduleInfo schedule, AssaAbloyIPLockModeInfo item);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/assaabloyiplockmodes?scheduleId=SCHEDULE.KEY \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.AssaAbloyIPLockModeInfo, Feenics.Keep.WebApi.Model",
"IPLockModeType":0,
"Key":null,
"CommonName":"Example_for_cURL",
"InFolderHref":null,
"InFolderKey":null,
"Links":[],
"ObjectLinks":null,
"Metadata":null,
"Notes":null,
"Tags":null,
"Monikers":null,
"Href":null
}'