SetIconsAsync

Sets or replaces icons in the marketplace. Returns (Task<IEnumerable>)

Overview of SetIconsAsync goes here.

Name Description
folder The folder to add the icons to
icons The collection of icon images to add

Set Icons Async

Example in C#

// Returns: IEnumerable<MarketplaceImageInfo>
var marketplaceImageInfo = await client.SetIconsAsync(FolderInfo folder, MarketplaceImageInfo icons);

Example in CURL



           curl -X POST \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/MarketplaceImages \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'
               -H 'Content-Type: application/json' \
               -d '[
                       {
                           "$type":"Feenics.Keep.WebApi.Model.MarketplaceImageInfo, Feenics.Keep.WebApi.Model",
                           "CommonName":"Report icon",
                           "Image":null,
                           "Category":"icon",
                           "ObjectLinks":null,
                           "Metadata":null,
                           "Notes":null,
                           "Tags":["report"],
                           "Monikers":null,
                           "Href":null
                       }
                   ]'