Create apigee proxy for multiple uri

Not applicable

Hello All

i am new in apigee, i wan to create apigee proxy for existing rest api which hold multiple uri

example:

Rest API Base URL: http://test.com then i have following uri

/find

/find{id}

/find?sort=asc

how to map above all uri to single apigee proxy

Thanks

Solved Solved
0 2 246
1 ACCEPTED SOLUTION

Hi @Anupam Sharma, welcome to Apigee Community.

Within an Apigee proxy, we can add Conditional Flows.

Each Conditional Flow will be having it's own uriPath & an HTTP method.

So in your case, we can create 3 Conditional Flows in a single proxy which will call the rest API base URL based on input request.

More info, videos on this can be seen here,

https://docs.apigee.com/api-platform/fundamentals/flow-configurations

View solution in original post

2 REPLIES 2

Hi @Anupam Sharma, welcome to Apigee Community.

Within an Apigee proxy, we can add Conditional Flows.

Each Conditional Flow will be having it's own uriPath & an HTTP method.

So in your case, we can create 3 Conditional Flows in a single proxy which will call the rest API base URL based on input request.

More info, videos on this can be seen here,

https://docs.apigee.com/api-platform/fundamentals/flow-configurations

Thanks , let me try