Reputation: 3
Referring to the guide in link below
https://learn.microsoft.com/en-us/azure/cognitive-services/form-recognizer/quickstarts/label-tool
I have been able to upload my documents and have my model successfully trained (with model id)
But when I try to call the service via REST API, I am unable to find my model.
https://{endpoint}/formrecognizer/v1.0-preview/custom/models
Content-Type: application/json; charset=utf-8
{
"models": []
}
Am I missing any step? Thank you in advance :)
Upvotes: 0
Views: 438
Reputation: 720
When calling the API you need to call the Form Recognizer v2.0 API to find your model - https://{endpoint}/formrecognizer/v2.0-preview/custom/models/{modelId}
Upvotes: 1