Sets the version for a downstream device. Returns (Task)
Set the version for the designated Downstream.
| Name | Description |
|---|---|
| downstream | The downstream device to set the version for |
| version | The version string to set |
Example in C#
// Returns: nothing
await client.SetVersionForDownstreamAsync(DownstreamInfo downstream, String version);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/controllers/CONTROLLER.KEY/downstream/DOWNSTREAM.KEY/version \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '"1.2.3"'