I have .Net 6 API deployed on Azure with one method Recognize. This method calls Azure Form Recognizer endpoint with invoice PDF and its returning structured object. With this object, I do something on API and return the result to customer. The Form Recognizer is listed under my Subscription in Azure. The fee for one call of Form Recognizer is a small amount. I need this: The customer (with his own subscription in Azure) calls my API with an OAuth token. The API calls Form Recognizer and I need the fee to be charged to the customer's subscription.
Is it possible? Thanks