ElevatorUserSettingsInfo

ElevatorUserSettingsInfo Properties

Item -> ElevatorUserSettingsInfo

ElevatorUserSettingsInfo -> AscendElevatorUserSettingsInfo -> KoneElevatorUserSettingsInfo -> MitsubishiElevatorUserSettingsInfo -> OtisElevatorUserSettingsInfo -> ThyssenKruppElevatorUserSettingsInfo

Field Type Inherited from Description
Href String Item Gets or sets the href.
ControllerKey String ElevatorUserSettingsInfo Gets or sets the controller key that these settings apply to

JSON Structure of ElevatorUserSettingsInfo

{
   "Href"	:	"String",
   "ControllerKey"	:	"String"
}

Add Elevator User Settings Async

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"
               }'
            

Delete Elevator User Settings Async

Example in C#

// Returns: nothing
await client.DeleteElevatorUserSettingsAsync(ElevatorUserSettingsInfo settings);

Example in CURL



           curl -X DELETE \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/people/PERSON.KEY/elevatorusersettings/ELEVATORUSERSETTING.KEY \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' 
            

Update Elevator User Settings Async

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"
                   }'