@David Thank you for reaching out to Microsoft Q&A. Based on my understanding, you would like to add multiple APIs in APIM which points to the same azure function with different query parameters.
- Use API URL suffix to add multiple APIs like abc, xyz when importing azure function
- Navigate to API, Operations and change URL in Frontend from /MyFunction to / (my function name is HttpTrigger)
- Use
rewrite-uri
policy in your inbound section to transform template to suit your needs. Refer docs: Rewrite URL and samples for more info.
<rewrite-uri template="MyFunction?options=xyz" />
I hope this answers your question and feel free to add a comment if you have any other questions. We would be happy to assist you. Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community.