Reputation: 393
I am trying to use Dialogflow's projects.agent.intents.list
method but I can't manage to understand what I am expected to put for "agent" in the parent string. In the documentation it specifies I am supposed to provide projects/Project ID/agent. I have provided projects/hr-oadbbl/HR.
To clarify, when using projects.getAgent
method, with this parent: projects/hr-oadbbl
I get this response object (the Agent):
{
"parent": "projects/hr-oadbbl",
"displayName": "HR",
"defaultLanguageCode": "en",
"timeZone": "Europe/Madrid",
"enableLogging": true,
"matchMode": "MATCH_MODE_HYBRID",
"classificationThreshold": 0.3,
"apiVersion": "API_VERSION_V2",
"tier": "TIER_STANDARD"
}
However, when trying to use the projects.agent.intents.list
method, directly in the browser, I'm being told "parent does not match pattern: /^projects/[^/]+/agent$/".
I've tried the following combinations: projects/hr-oadbbl, projects/hr-oadbbl/HR, hr-oadbbl/HR, projects/HR but can't seem to get this regex pattern right.
Upvotes: 0
Views: 150