Add a new output to a folder Returns (Task.)
Overview of AddOutputAsync goes here.
| Name | Description |
|---|---|
| folder | The folder to add the output to |
| item | The output information |
Example in C#
// Returns: OutputInfo
var outputInfo = await client.AddOutputAsync(FolderInfo folder, OutputInfo item);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/outputs \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type": "Feenics.Keep.WebApi.Model.OutputInfo, Feenics.Keep.WebApi.Model",
"CommonName": "Door Strike",
"InFolderKey": "INSTANCE.KEY"
}'