Creates a new marketplace package Returns (Task)
Overview of AddMarketplacePackageAsync goes here.
| Name | Description |
|---|---|
| folder | The folder to create the marketplace package in |
| item | The marketplace package information to create |
Example in C#
// Returns: MarketplacePackageInfo
var marketplacePackageInfo = await client.AddMarketplacePackageAsync(FolderInfo folder, MarketplacePackageInfo item);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/MarketplacePackages \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.MarketplacePackageInfo, Feenics.Keep.WebApi.Model",
"PackageName":"Name of package",
"ShortDescription":"Short description of package for display",
"LongDescription":"Long description of package",
"CreditPrice":10,
"Status":0,
"CommonName":"MarketplacePackage CommonName"
"ObjectLinks":null,
"Metadata":null,
"Notes":null,
"Tags":["report"],
"Monikers":null,
"Href":null
}'