MarketplacePackageStatus

Defines the publication status of marketplace packages including active availability, inactive state, and preview/testing mode.

Overview of MarketplacePackageStatus goes here.

Name Value Description
Active 0 Active
Inactive 1 Inactive
Preview 2 Preview

Update Marketplace Package Status

Example in C#

// Returns: nothing
await client.UpdateMarketplacePackageStatus(MarketplacePackageInfo item, MarketplacePackageStatus status);

Example in CURL



           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/MarketplacePackages/MarketplacePackage.KEY/status \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'
               -H 'Content-Type: application/json' \
               -d '0'