Gets marketplace image information for a package Returns (Task<IEnumerable>)
Overview of GetMarketplaceImageInfosForPackageAsync goes here.
| Name | Description |
|---|---|
| item | The marketplace package to get images for |
| pointerOnly | Return only image pointers without full image data |
Example in C#
// Returns: IEnumerable<MarketplaceImageInfo>
var marketplaceImageInfo = await client.GetMarketplaceImageInfosForPackageAsync(MarketplacePackageInfo item, Boolean pointerOnly);
Example in CURL
curl -X GET \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/MarketplacePackages/MarketplacePackage.KEY/images?pointerOnly=true \
-H 'Authorization: Bearer TOKEN_GOES_HERE'