UpdateBoschPointStatusAsync

Returns (Task)

Adjust the status of the designated Bosch Point.

Name Description
boschPoint
status

Update Bosch Point Status Async

Example in C#

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

Example in CURL



           curl -X PUT \
               https://keepapi.feenicshosting.com/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
                   }'