Skip to main content

intents

Creates, updates, deletes, gets or lists an intents resource.

Overview

Nameintents
TypeResource
Idgoogle.dialogflow.intents

Fields

The following fields are returned by SELECT queries:

Successful response

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.
priorityinteger (int32)The 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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_agents_intents_getselectprojectsId, locationsId, agentsId, intentsIdlanguageCodeRetrieves the specified intent.
projects_locations_agents_intents_listselectprojectsId, locationsId, agentsIdlanguageCode, intentView, pageSize, pageTokenReturns the list of all intents in the specified agent.
projects_locations_agents_intents_createinsertprojectsId, locationsId, agentsIdlanguageCodeCreates 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_patchupdateprojectsId, locationsId, agentsId, intentsIdlanguageCode, updateMaskUpdates the specified intent. Note: You should always train a flow prior to sending it queries. See the training documentation.
projects_locations_agents_intents_deletedeleteprojectsId, locationsId, agentsId, intentsIdDeletes the specified intent. Note: You should always train a flow prior to sending it queries. See the training documentation.
projects_locations_agents_intents_importexecprojectsId, locationsId, agentsIdImports the specified intents into the agent. This method is a long-running operation. The returned Operation type has the following method-specific fields: - metadata: ImportIntentsMetadata - response: ImportIntentsResponse
projects_locations_agents_intents_exportexecprojectsId, locationsId, agentsIdExports the selected intents. This method is a long-running operation. The returned Operation type has the following method-specific fields: - metadata: ExportIntentsMetadata - response: ExportIntentsResponse

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
agentsIdstring
intentsIdstring
locationsIdstring
projectsIdstring
intentViewstring
languageCodestring
pageSizeinteger (int32)
pageTokenstring
updateMaskstring (google-fieldmask)

SELECT examples

Retrieves the specified intent.

SELECT
name,
description,
displayName,
isFallback,
labels,
parameters,
priority,
trainingPhrases
FROM google.dialogflow.intents
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND agentsId = '{{ agentsId }}' -- required
AND intentsId = '{{ intentsId }}' -- required
AND languageCode = '{{ languageCode }}';

INSERT examples

Creates an intent in the specified agent. Note: You should always train a flow prior to sending it queries. See the training documentation.

INSERT INTO google.dialogflow.intents (
data__name,
data__displayName,
data__trainingPhrases,
data__parameters,
data__priority,
data__isFallback,
data__labels,
data__description,
projectsId,
locationsId,
agentsId,
languageCode
)
SELECT
'{{ name }}',
'{{ displayName }}',
'{{ trainingPhrases }}',
'{{ parameters }}',
{{ priority }},
{{ isFallback }},
'{{ labels }}',
'{{ description }}',
'{{ projectsId }}',
'{{ locationsId }}',
'{{ agentsId }}',
'{{ languageCode }}'
RETURNING
name,
description,
displayName,
isFallback,
labels,
parameters,
priority,
trainingPhrases
;

UPDATE examples

Updates the specified intent. Note: You should always train a flow prior to sending it queries. See the training documentation.

UPDATE google.dialogflow.intents
SET
data__name = '{{ name }}',
data__displayName = '{{ displayName }}',
data__trainingPhrases = '{{ trainingPhrases }}',
data__parameters = '{{ parameters }}',
data__priority = {{ priority }},
data__isFallback = {{ isFallback }},
data__labels = '{{ labels }}',
data__description = '{{ description }}'
WHERE
projectsId = '{{ projectsId }}' --required
AND locationsId = '{{ locationsId }}' --required
AND agentsId = '{{ agentsId }}' --required
AND intentsId = '{{ intentsId }}' --required
AND languageCode = '{{ languageCode}}'
AND updateMask = '{{ updateMask}}'
RETURNING
name,
description,
displayName,
isFallback,
labels,
parameters,
priority,
trainingPhrases;

DELETE examples

Deletes the specified intent. Note: You should always train a flow prior to sending it queries. See the training documentation.

DELETE FROM google.dialogflow.intents
WHERE projectsId = '{{ projectsId }}' --required
AND locationsId = '{{ locationsId }}' --required
AND agentsId = '{{ agentsId }}' --required
AND intentsId = '{{ intentsId }}' --required;

Lifecycle Methods

Imports the specified intents into the agent. This method is a long-running operation. The returned Operation type has the following method-specific fields: - metadata: ImportIntentsMetadata - response: ImportIntentsResponse

EXEC google.dialogflow.intents.projects_locations_agents_intents_import 
@projectsId='{{ projectsId }}' --required,
@locationsId='{{ locationsId }}' --required,
@agentsId='{{ agentsId }}' --required
@@json=
'{
"intentsUri": "{{ intentsUri }}",
"intentsContent": "{{ intentsContent }}",
"mergeOption": "{{ mergeOption }}"
}';