Update the status of an output Returns (Task)
Overview of UpdateOutputStatusAsync goes here.
| Name | Description |
|---|---|
| output | The output to update the status for |
| status | The status to set |
Example in C#
// Returns: nothing
await client.UpdateOutputStatusAsync(OutputInfo output, OutputStatusItem status);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/outputs/OUTPUT.KEY/status \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.OutputStatusItem, Feenics.Keep.WebApi.Model"
}'