Hi team, our APIs are accessible from multiple root paths but with same base URL. For example an API is accessible via /service/api/v2/agents and another via /backend/api/v2/agents but in the code base the path is only defined as /api/v2/agents.
Actually we have API Gateway in place and we want to give the user the ability to be able to call the API from either plan. /backend is a different plan than /service
Hi there! Are you experiencing some issues with API path access? If possible, could you share more details about the specific situation? Screenshots (like error messages or configuration screens) would also help us understand the problem faster.
Based on your setup, we recommend creating two separate modules in Apidog for /service
and /backend
paths. Each module can have its own base URL configured as https://example.com/service
and https://example.com/backend
respectively. This way you can maintain the same endpoint paths (/api/v2/agents
) within each module while differentiating the access paths.
Thanks Support team. I will look into this.