- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization Scopes
- ValidationError
- Severity
- Try it!
Gets agent validation result. Agent validation is performed during training time and is updated automatically when training is completed.
HTTP request
GET https://dialogflow.googleapis.com/v2/{parent=projects/*}/agent/validationResult
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
parent |
Required. The project that the agent is associated with. Format: Authorization requires the following IAM permission on the specified resource
|
Query parameters
Parameters | |
---|---|
languageCode |
Optional. The language for which you want a validation result. If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used. |
Request body
The request body must be empty.
Response body
If successful, the response body contains data with the following structure:
Represents the output of agent validation.
JSON representation | |
---|---|
{
"validationErrors": [
{
object ( |
Fields | |
---|---|
validationErrors[] |
Contains all validation errors. |
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.
ValidationError
Represents a single validation error.
JSON representation | |
---|---|
{
"severity": enum ( |
Fields | |
---|---|
severity |
The severity of the error. |
entries[] |
The names of the entries that the error is associated with. Format:
|
errorMessage |
The detailed error messsage. |
Severity
Represents a level of severity.
Enums | |
---|---|
SEVERITY_UNSPECIFIED |
Not specified. This value should never be used. |
INFO |
The agent doesn't follow Dialogflow best practices. |
WARNING |
The agent may not behave as expected. |
ERROR |
The agent may experience partial failures. |
CRITICAL |
The agent may completely fail. |