AddFitPackageAsync

Adds a new FIT package to a folder. Returns (Task)

Overview of AddFitPackageAsync goes here.

Name Description
folder The folder to create the FIT package in
item The FIT package information to create

Add Fit Package Async

Example in C#

// Returns: FitPackageInfo
var fitPackageInfo = await client.AddFitPackageAsync(FolderInfo folder, FitPackageInfo item);

Example in CURL



           curl -X POST \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/FitPackages \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                       "$type":"Feenics.Keep.WebApi.Model.FitPackageInfo, Feenics.Keep.WebApi.Model",
                       "Package":"PackageId-1.0.0",
                       "Configuration":"{}"
                       "CommonName":"FitPackage CommonName"
                       "ObjectLinks":null,
                       "Metadata":null,
                       "Notes":null,
                       "Tags":null,
                       "Monikers":null,
                       "Href":null
                   }'