Updates the tags for a marketplace package Returns (Task)
Overview of UpdateMarketplacePackageTags goes here.
| Name | Description |
|---|---|
| item | The marketplace package to update tags for |
| tags | The tags to assign |
Example in C#
// Returns: nothing
await client.UpdateMarketplacePackageTags(MarketplacePackageInfo item, String tags);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/MarketplacePackages/MarketplacePackage.KEY/tags \
-H 'Authorization: Bearer TOKEN_GOES_HERE'
-H 'Content-Type: application/json' \
-d '["report", "dataimport"]'