Hi,
I'm looking to retrieve a list of utterances for an intent (or, preferably, all intents) for a given Digital Bot Flow.
There is an API related to intent health, and it has an object in the response which looks like it should contain the utterances, but it never does - it's always empty.
There isn't any "Expand" parameter either, that I can see. But, there is another API which allows you to query the health of each utterance but it needs the UtteranceId, I just can't figure out how to get that without being able to retrieve the utterances anywhere.
Am I missing something?
/api/v2/flows/{flowId}/versions/{versionId}/intents/{intentId}/health
"health": {
"status": "Completed",
"overallScore": 100,
"issueCount": 0,
"utterances": []
},