Reputation: 646
I have trained a custom form identifier using Form Recognizer Studio:
The model is trained and it seems to be working well.
Now, I want to use this model using Power Automate, but I need the model identifier, but Where Can I Find It?
I have searched it everywhere in Azure, but no luck:
Upvotes: 1
Views: 3291
Reputation: 1
Better late than never, at this point with the model ID not available, consider using HTTP in your logic app, instead of Form Recognizer Logic App. Ways to make it better would be to keep the model ID as a variable and have a delay between REQUEST and GET
Upvotes: 0
Reputation: 720
In the Studio you can find the models IDs within the projects in the Model tab. Please note though that the Form Recognizer Power Automate connector does not yet support the new preview release and supports only the 2.1 GA API. In order to use it you need to train the model in the 2.1 release and use https://fott-2-1.azurewebsites.net/. In 2.1 you will also find the model ID in the UX.
If you want to use the new Studio and preview API in power automate you can create a custom connector and call the REST API directly using the AnalyzeDocument API https://westus.dev.cognitive.microsoft.com/docs/services/form-recognizer-api-v3-0-preview-1/operations/AnalyzeDocument In this case you will need to provide the model name which is the unique model name you gave the model when training it.
Upvotes: 1