Adds a new Elevator User Settings object for the card holder based on ControllerKey Returns (The setting that has been added to the cardholder.)
| Name | Description |
|---|---|
| person | The Cardholder receiving the new settings |
| settings | The settings to be added to the cardholder |
Example in C#
// Returns: ElevatorUserSettingsInfo
var elevatorUserSettingsInfo = await client.AddElevatorUserSettingsAsync(PersonInfo person, ElevatorUserSettingsInfo settings);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people/PERSON.KEY/elevatorusersettings \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type": "Feenics.Keep.WebApi.Model.ElevatorUserSettingsInfo, Feenics.Keep.WebApi.Model",
"ControllerKey": "CONTROLLER.KEY"
}'