sirdank
sirdank

Reputation: 3571

API with arbitrary route

In Azure API Management, how can I define a single operation that listens to multiple routes? In particular, I want my operation to listen on a certain prefix e.g. /file/get/ but then accept an arbitrary number of additional route parameters so my one operation might forward requests to /file/get/layout.xml but also /file/get/shared/maps/child.xml.

Upvotes: 0

Views: 53

Answers (1)

sirdank
sirdank

Reputation: 3571

This URL inside my operation is working for me:

/get/{*path}

Upvotes: 1

Related Questions