onlyIcons = true => returns icons Returns (Task<IEnumerable>)
Overview of GetMarketplaceImagesAsync goes here.
| Name | Description |
|---|---|
| folder | The folder to get marketplace images from |
| onlyIcons | True to return only icons, false to return all images |
| pointerOnly | True to return only image pointers without binary data |
| tag | Optional tag to filter images by |
Example in C#
// Returns: IEnumerable<MarketplaceImageInfo>
var marketplaceImageInfo = await client.GetMarketplaceImagesAsync(FolderInfo folder, Boolean onlyIcons, Boolean pointerOnly, String tag);
Example in CURL
curl -X GET \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/MarketplaceImages?onlyIcons=true;pointerOnly=true;tag=report \
-H 'Authorization: Bearer TOKEN_GOES_HERE'