AddAppAsync

add application as an asynchronous operation. Returns (Task.)

Create a new App in the designated Folder.

Name Description
folder The folder.
item The item.

Add App Async

Example in C#

// Returns: AppInfo
var appInfo = await client.AddAppAsync(FolderInfo folder, AppInfo item);

Example in CURL



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