Deletes the provided accessLevelEntryItem from the accessLevel.The folder, accessLevel and accessLevelEntryItem must already exist. Returns (Task.)Exception Type: NullReferenceExceptionPost failed to get an Href as the result
Overview of DeleteAccessLevelEntryItemAsync goes here.
Name | Description |
---|---|
accessLevel | The accesslevel. |
entryItem | The item. |
Example in C#
// Returns: nothing
await client.DeleteAccessLevelEntryItemAsync(AccessLevelInfo accessLevel, AccessLevelEntryItem entryItem);
Example in CURL
curl -X DELETE \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/accesslevels/accessLevel.KEY/accesslevelentries \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"ReaderCommonName" : "String",
"ReaderId" : "String",
"ScheduleCommonName" : "String",
"ScheduleId" : "String"
}'