Enables scripted content fragments to retrieve hash tags
Methods
List
List Overload 1
Lists hash tags
Velocity
#set($apiListResponse = $core_v2_hashTag.List($queryText))
JavaScript
var apiListResponse = core_v2_hashTag.List(queryText);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
queryText | String | Text to find matching hash tags | Required |
List Overload 2
Lists hash tags
Velocity
#set($apiListResponse = $core_v2_hashTag.List($queryText, "%{ ApplicationId = $applicationIdArg, ApplicationTypeId = $applicationTypeIdArg, ContainerId = $containerIdArg, ContainerTypeId = $containerTypeIdArg, ContentTypeId = $contentTypeIdArg, IncludeSubContainers = $includeSubContainersArg, PageSize = $pageSizeArg }"))
JavaScript
var apiListResponse = core_v2_hashTag.List(queryText, { ApplicationId: applicationIdArg, ApplicationTypeId: applicationTypeIdArg, ContainerId: containerIdArg, ContainerTypeId: containerTypeIdArg, ContentTypeId: contentTypeIdArg, IncludeSubContainers: includeSubContainersArg, PageSize: pageSizeArg });
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
queryText | String | Text to find matching hash tags | Required | ||
ApplicationId | Guid | Application identifier filter | Optional | ||
ApplicationTypeId | Guid | Application type identifier filter | Optional | ||
ContainerId | Guid | Container identifier filter | Optional | ||
ContainerTypeId | Guid | Container type identifier filter | Optional | ||
ContentTypeId | Guid | Content type identifier filter | Optional | ||
IncludeSubContainers | Boolean | Include sub containers. ContainerId must be set if this is set. | Optional | ||
PageSize | Int32 | Specify the number of results to return | Optional | 20 |