AddBoschPointAsync

Creates a new Bosch point for the specified panel. Returns (Task)

Create a new Bosch Point on the designated Bosch Panel.

Name Description
panel The Bosch panel to add the point to
item The Bosch point information to create

Add Bosch Point Async

Example in C#

// Returns: BoschPointInfo
var item = await client.AddBoschPointAsync(BoschPanelInfo panel, item item);

Example in CURL



           curl -X POST \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/boschpanels/BOSCHPANEL.KEY/boschpoints \
                -H 'Authorization: Bearer TOKEN_GOES_HERE' \ 
                -H 'Content-Type: application/json' \
                -d '{
                       "$type":"Feenics.Keep.WebApi.Model.BoschPointInfo, Feenics.Keep.WebApi.Model",
                       "Status":null,
                       "Index":0,
                       "Key":null,
                       "CommonName":"BoschPointFor_cUrl",
                       "InFolderHref":null,
                       "InFolderKey":null,
                       "Links":[],
                       "ObjectLinks":null,
                       "Metadata":null,
                       "Notes":null,
                       "Tags":null,
                       "Monikers":null,
                       "Href":null
                   }'