Adds a new Elevator User Settings object for the card holder based on ControllerKey Returns ()
Name | Description |
---|---|
settings | The settings to be added to the cardholder |
Example in C#
// Returns: nothing
await client.UpdateElevatorUserSettingsAsync(ElevatorUserSettingsInfo settings);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people/PERSON.KEY/elevatorusersettings/ELEVATORUSERSETTING.KEY \
-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",
"Href":"/api/f/INSTANCE.KEY/people/PERSON.KEY/elevatorusersettings/ELEVATORUSERSETTING.KEY"
}'