TagCountResponse

This is the response for a call for how many Tags are in a folder.

TagCountResponse Properties

TagCountResponse

Field Type Inherited from Description
Counts TagCount[] TagCountResponse Gets or sets the Counts value

JSON Structure of TagCountResponse

{
   "Counts"	:	"[TagCount](/object-model/tagcount)[]"
}

Get Distinct Tags Async

Example in C#

// Returns: TagCountResponse
var tagCountResponse = await client.GetDistinctTagsAsync(FolderInfo folder);

Example in CURL



           #In this example we are looking for how many controllers there are in a particular instance and its child folders.
           curl -X GET \
               https://keepapi.feenicshosting.com/api/f/INSTANCE.KEY/tags \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'