No, not with the standard Generic OAuth 2.0 authentication model in Power Platform custom connectors. The OAuth configuration for a custom connector treats the authorization endpoint as essentially static. During the OAuth authorization code flow, Power Platform generates the /authorize request and only includes the supported OAuth parameters (such as client_id, redirect_uri, scope, response_type, state, etc.). User-defined connection parameters are not injected into the authorization request.
You would like something like: https://identity.example.com/connect/authorize ?tenantId=<user-entered-value> &client_id=... &scope=... However, Power Platform does not provide a supported mechanism to:
Take a connection parameter entered by the user
Dynamically append it to the OAuth Authorization URL
Modify OAuth request parameters at runtime per connection
This limitation applies to both custom connectors and certified connectors.
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.