Item -> ElevatorUserSettingsInfo
ElevatorUserSettingsInfo -> KoneElevatorUserSettingsInfo -> MitsubishiElevatorUserSettingsInfo -> OtisElevatorUserSettingsInfo -> ThyssenKruppElevatorUserSettingsInfo
Field | Type | Inherited from | Description |
---|---|---|---|
Href | String | Item | Gets or sets the Href value |
ControllerKey | String | ElevatorUserSettingsInfo | Gets or sets the ControllerKey value |
{
"Href" : "String",
"ControllerKey" : "String"
}
Example in C#
// Returns: ElevatorUserSettingsInfo
var elevatorUserSettingsInfo = await client.AddElevatorUserSettingsAsync(PersonInfo person, ElevatorUserSettingsInfo settings);
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'
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"
}'