Scenario:
- There are multiple APIs on async pattern. Each API has its own query option and its JSON request body
- Each API only returns 202 and a custom response header
- I want to have a single API, which will take all the possible query options and request JSON body and then call the underlying individual APIs (based on some parameter in request body)
- I want this single API to be completely pass-through, so that whatever the client passes in query option and request body, it can be directly passed to the underlying API without any code changes in main API
This is similar to another question which doesn't have any answers. Does the latest version of OData support this scenario easily?