Dear experts,
I am trying to call the power automate flow which does this following tasks:
- retrieve voice mail which comes with email attachemnt.
- saved it in one drive
- pass that audio file (all supported format by whisper api) using custom connector (calling whisper speech to text api) and return as text. (This is where I am not able to continue)
But I am trying to pass from one drive and pass it as parameters in flow action and return text.
I am not able to pass it.
This is my parameters from my custom connector
- In Swagger
parameters:
- name: file
in: formData
required: true
type: file
- name: filename
in: formData
required: true
type: string
- name: model
in: formData
required: true
type: string
GUI in action :
Which type of contents i have to read from one drive and pass it to action.
Notes: I watched the Reza Dorani youtube video for building custom connector and call that connector from power app which works when passing audio file. It returns text correctly from flow. I don't have any idea how to do like retrieving audio file from one drive and pass it to connector.
Thanks and appreciate it.