ExecuteActionRequest
Stay organized with collections
Save and categorize content based on your preferences.
Request for the DataConnectorService.ExecuteAction
method.
JSON representation |
{
"name": string,
"actionName": string,
"args": {
object
},
"languageCode": string,
"assistAnswerInfo": {
object (AssistAnswerInfo )
}
} |
Fields |
name |
string
Required. DataConnector resource. The data connector used for executing the action.
|
actionName |
string
Required. Name of the action. For example: "send_email"
|
args |
object (Struct format)
Required. Named arguments of the action. For example: {"recipient": "tom@...", "subject": ... } When offered to a user, this part might be editable.
|
languageCode |
string
Optional. Language to be used for status and error messages created by actions.
|
assistAnswerInfo |
object (AssistAnswerInfo )
Optional. If specified, the result of the action execution will be associated with the given assist answer. This lets the assistant take the result into account in subsequent answers in the same session. The referenced assist answer resource must exist.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-03-03 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-03 UTC."],[[["The `DataConnectorService.ExecuteAction` method uses a JSON object to define an action request."],["The `name` and `actionName` fields are required strings specifying the data connector resource and the name of the action to perform."],["The `args` field, formatted as a `Struct` object, is a required field for providing named arguments to the action, such as recipients or subjects."],["The optional `languageCode` field specifies the language for action status and error messages."],["The `assistAnswerInfo` field is an optional field that if specified, ties the action's results to an existing assist answer, allowing the assistant to factor this into later responses."]]],[]]