Hello @GIRISH PATIL ,
As per this documentation in document intelligence there is no publish option, instead of that after training the extraction model you test it via SDK, Api or clicking on Test.
Here it the sample rest api example for testing the custom model.
Make POST request to this endpoint
https://myendpoint.cognitiveservices.azure.com/documentintelligence/documentModels/customModelId:analyze?_overload=analyzeDocument&api-version=2024-11-30&pages=1-2,4&locale=en-US&stringIndexType=textElements
and below is the body.
{ "urlSource": "http://host.com/doc.pdf" }
Next, for above request you will get response with result id URL where you need to make Get request on that URL to get the results.
Please check this Rest API operation for more information.
If above solution helped you, please do accept
it and give feedback by clicking on yes
and if you have any query let me know in comments or in private message.
Thank you