Skip to main content

intents

Overview

Nameintents
TypeResource
Idgoogle.dialogflow.intents

Fields

NameDatatypeDescription
namestringThe unique identifier of the intent. Required for the Intents.UpdateIntent method. Intents.CreateIntent populates the name automatically. Format: projects//locations//agents//intents/.
descriptionstringHuman readable description for better understanding an intent like its scope, content, result etc. Maximum character limit: 140 characters.
displayNamestringRequired. The human-readable name of the intent, unique within the agent.
isFallbackbooleanIndicates whether this is a fallback intent. Currently only default fallback intent is allowed in the agent, which is added upon agent creation. Adding training phrases to fallback intent is useful in the case of requests that are mistakenly matched, since training phrases assigned to fallback intents act as negative examples that triggers no-match event.
labelsobjectThe key/value metadata to label an intent. Labels can contain lowercase letters, digits and the symbols '-' and '_'. International characters are allowed, including letters from unicase alphabets. Keys must start with a letter. Keys and values can be no longer than 63 characters and no more than 128 bytes. Prefix "sys-" is reserved for Dialogflow defined labels. Currently allowed Dialogflow defined labels include: sys-head sys-contextual The above labels do not require value. "sys-head" means the intent is a head intent. "sys.contextual" means the intent is a contextual intent.
parametersarrayThe collection of parameters associated with the intent.
priorityintegerThe priority of this intent. Higher numbers represent higher priorities. - If the supplied value is unspecified or 0, the service translates the value to 500,000, which corresponds to the Normal priority in the console. - If the supplied value is negative, the intent is ignored in runtime detect intent requests.
trainingPhrasesarrayThe collection of training phrases the agent is trained on to identify the intent.

Methods

NameAccessible byRequired ParamsDescription
projects_locations_agents_intents_getSELECTagentsId, intentsId, locationsId, projectsIdRetrieves the specified intent.
projects_locations_agents_intents_listSELECTagentsId, locationsId, projectsIdReturns the list of all intents in the specified agent.
projects_locations_agents_intents_createINSERTagentsId, locationsId, projectsIdCreates an intent in the specified agent. Note: You should always train a flow prior to sending it queries. See the training documentation.
projects_locations_agents_intents_deleteDELETEagentsId, intentsId, locationsId, projectsIdDeletes the specified intent. Note: You should always train a flow prior to sending it queries. See the training documentation.
_projects_locations_agents_intents_listEXECagentsId, locationsId, projectsIdReturns the list of all intents in the specified agent.
projects_locations_agents_intents_patchEXECagentsId, intentsId, locationsId, projectsIdUpdates the specified intent. Note: You should always train a flow prior to sending it queries. See the training documentation.