AddAccessLevelEntryItemAsync

Adds the provided accessLevelEntryItem to the accessLevel.The folder and accessLevel must already exist. The accessLevelEntryItem must not already exist. Returns (Task.)Exception Type: NullReferenceExceptionPost failed to get an Href as the result

Overview of AddAccessLevelEntryItemAsync goes here.

Name Description
accessLevel The accessLevel.
entryItem The item.

Add Access Level Entry Item Async

Example in C#

// Returns: nothing
await client.AddAccessLevelEntryItemAsync(AccessLevelInfo accessLevel, AccessLevelEntryItem entryItem);

Example in CURL



           curl -X POST \
               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"
                    }'