unstuck
unstuck

Reputation: 646

Where to find the model identifier in Form Recognizer?

I have trained a custom form identifier using Form Recognizer Studio:

enter image description here

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?

enter image description here

I have searched it everywhere in Azure, but no luck:

enter image description here

Upvotes: 1

Views: 3291

Answers (2)

Melus
Melus

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

Neta
Neta

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

Related Questions