UpdateBoschPointStatusAsync

Updates the status of a Bosch point. Returns (Task)

Adjust the status of the designated Bosch Point.

Name Description
boschPoint The Bosch point to update status for
status The new status information

Update Bosch Point Status Async

Example in C#

// Returns: nothing
await client.UpdateBoschPointStatusAsync(item boschPoint, item status);

Example in CURL



           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/boschpanels/BOSCHPANEL.KEY/boschpoints/BOSCHPOINT.KEY/status \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                       "$type":"Feenics.Keep.WebApi.Model.PointStatusItem, Feenics.Keep.WebApi.Model",
                       "IsBypassed":false,
                       "IsFaulted":false,
                       "Status":255
                   }'