AddAccessLevelElevatorEntryItemAsync

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

Overview of AddAccessLevelElevatorEntryItemAsync goes here.

Name Description
accessLevel The accessLevel.
entryItem The item.

Add Access Level Elevator Entry Item Async

Example in C#

// Returns: nothing
await client.AddAccessLevelElevatorEntryItemAsync(AccessLevelInfo accessLevel, AccessLevelElevatorEntryItem entryItem);

Example in CURL



           curl -X POST \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/accesslevels/accessLevel.KEY/elevatorentries \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                          "ElevatorAccessLevelCommonName"	:	"String",
                          "ElevatorAccessLevelId"	:	"String",
                          "ReaderCommonName"	:	"String",
                          "ReaderId"	:	"String",
                    }'