Updates a marketplace package Returns (Task)
Overview of UpdateMarketplacePackageAsync goes here.
| Name | Description |
|---|---|
| item | The marketplace package information to update |
Example in C#
// Returns: nothing
await client.UpdateMarketplacePackageAsync(MarketplacePackageInfo item);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/MarketplacePackages/MarketplacePackage.KEY \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.MarketplacePackageInfo, Feenics.Keep.WebApi.Model",
"ShortDescription":"Short description of package for display",
"LongDescription":"Long description of package",
"CreditPrice":10
}'