SetLastUpdatedOnForControllerAsync

Sets the last updated timestamp for a controller. Returns (Task)

Set the last updated field for the designated Controller.

Name Description
controller The controller to update
lastUpdatedOn The last updated timestamp to set

Set Last Updated On For Controller Async

Example in C#

// Returns: nothing
await client.SetLastUpdatedOnForControllerAsync(ControllerInfo controller, DateTime lastUpdatedOn);

Example in CURL



           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/controllers/CONTROLLERS.KEY/lastupdatedon  \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '"2019-02-25T16:28:47.5847564Z"'