Enables scripted content fragments to use mentionables
Methods
List
List Overload 1
Lists mentionables
Velocity
#set($apiListResponse = $core_v2_mentionable.List($queryText))
JavaScript
var apiListResponse = core_v2_mentionable.List(queryText);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
queryText | String | Text to find matching mentionables | Required |
List Overload 2
Lists mentionables
Velocity
#set($apiListResponse = $core_v2_mentionable.List($queryText, "%{ ApplicationId = $applicationIdArg, ApplicationTypeId = $applicationTypeIdArg, ContainerId = $containerIdArg, ContainerTypeId = $containerTypeIdArg, ContentTypeId = $contentTypeIdArg, PageSize = $pageSizeArg }"))
JavaScript
var apiListResponse = core_v2_mentionable.List(queryText, { ApplicationId: applicationIdArg, ApplicationTypeId: applicationTypeIdArg, ContainerId: containerIdArg, ContainerTypeId: containerTypeIdArg, ContentTypeId: contentTypeIdArg, PageSize: pageSizeArg });
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
queryText | String | Text to find matching mentionables | Required | ||
ApplicationId | Guid | Mentionable's application identifier | Optional | ||
ApplicationTypeId | Guid | Mentionable's application type identifier | Optional | ||
ContainerId | Guid | Mentionable's container identifier | Optional | ||
ContainerTypeId | Guid | Mentionable's container type identifier | Optional | ||
ContentTypeId | Guid | Mentionable's content type identifier | Optional | ||
PageSize | Int32 | Specify the number of results to return per page | Optional | 20 |