AddFloorplanAsync

Adds a new floorplan to a folder Returns (Task)

Create new Floor Plan Item in the designated Folder.

Name Description
folder The folder to add the floorplan to
floorplan The floorplan information to add

Add Floorplan Async

Example in C#

// Returns: FloorplanInfo
var floorplanInfo = await client.AddFloorplanAsync(FolderInfo folder, FloorplanInfo floorplan);

Example in CURL



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