Adds a text (chat, for example), or audio (phone recording, for example) message from a participant into the conversation.
Note: Always use agent versions for production traffic sent to virtual agents. See Versions and environments.
HTTP request
POST https://{endpoint}/v2beta1/{participant=projects/*/locations/*/conversations/*/participants/*}:analyzeContent
Where {endpoint}
is one of the supported service endpoints.
The URLs use gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
participant |
Required. The name of the participant this text comes from. Format: Authorization requires the following IAM permission on the specified resource
|
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "replyAudioConfig": { object ( |
Fields | |
---|---|
reply |
Speech synthesis configuration. The speech synthesis settings for a virtual agent that may be configured for the associated conversation profile are not used when calling participants.analyzeContent. If this configuration is not supplied, speech synthesis is disabled. |
query |
Parameters for a Dialogflow virtual-agent query. |
assist |
Parameters for a human assist query. |
cx |
Additional parameters to be put into Dialogflow CX session parameters. To remove a parameter from the session, clients should explicitly set the parameter value to null. Note: this field should only be used if you are connecting to a Dialogflow CX agent. |
cx |
The unique identifier of the CX page to override the If Note: this field should only be used if you are connecting to a Dialogflow CX agent. |
message |
Optional. The send time of the message from end user or human agent's perspective. It is used for identifying the same message under one participant. Given two messages under the same participant: * If send time are different regardless of whether the content of the messages are exactly the same, the conversation will regard them as two distinct messages sent by the participant. * If send time is the same regardless of whether the content of the messages are exactly the same, the conversation will regard them as same message, and ignore the message received later. If the value is not provided, a new request will always be regarded as a new message without any de-duplication. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
request |
A unique identifier for this request. Restricted to 36 ASCII characters. A random UUID is recommended. This request is only idempotent if a |
Union field input . Required. The input content. input can be only one of the following: |
|
text |
The natural language text to be processed. |
audio |
The natural language speech audio to be processed. |
event |
An input event to send to Dialogflow. |
suggestion |
An input representing the selection of a suggestion. |
intent |
The intent to be triggered on V3 agent. |
Response body
If successful, the response body contains an instance of AnalyzeContentResponse
.
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/cloud-platform
https://www.googleapis.com/auth/dialogflow
For more information, see the Authentication Overview.