OpenApi import does not add BASE_URL to URLs
BugImprovement
I am trying to import an OpenApi v3.0.4 document. The requests are all just “/api/…” instead of something like “{{BASE_URL}}/api/…”. This way I will manually have to edit all the URLs.
For context, the document is created by an asp.net core application with Swashbuckle.AspNetCore 10.2.3.
Windows2026.7.0-beta.5

This shipped in 2026.7.0 🎉
This is now available in 2026.7.0-beta.6!
This is fixed in 2026.7.0-beta.6. Importing a document with no
serversentry (the Swashbuckle default) now creates abaseUrlvariable in a “Default” environment, and every request URL is imported as${[baseUrl]}/api/..., so the host only needs to be set once.