I want to create one or more custom connector inside Power automate,to allow users to easily integrate with our own application's APIs. now i watched this video:-
https://www.youtube.com/watch?v=jBLO1mAioY0
and from what i understand is that there are specific standards that our APIs must compile with to be able to use them inside custom connectors, am i correct?
For example in our own API you can create an item inside our system, by doing the following:-
1) Call this url https://ourOWNApp.com/api/v2/Item/Create
2) In the http post request pass the json data containing the item info + authentication token inside the http Authorization header.
so can we use our API as-is inside the connector? or we need to modify its specifications?
Second question, if we are able to create a custom connector inside Power automate, then can we use this connector as-is for our Power Apps custom connectors as well?
Third question, as our APIs provides 35 services that can be called, so is it more feasible (at least on phase 1) to specify a general connector so it allow us to authenticate to our APIs by passing the authorization token, then rely on sending raw JSON to our system? rather than creating 35 actions? in other words to build something similar to the "SharePoint Send HTTP Request flow" .. where we just authenticate to SharePoint then call the SharePoint Rest APIs as we want?? is this point valid?
Thanks