REST query import
Import lets you create multiple REST queries at once from API definitions.
Supported formats
- OpenAPI 2.0 / Swagger 2.0 (JSON or YAML)
- OpenAPI 3.0 / Swagger 3.0 (JSON or YAML)
- cURL
Import flow (file or raw text)
- Open Settings > Connections > APIs
- Open the target connection
- Click Open in API Editor
- Click Import
- Choose input source:
- File: upload spec file
- Raw text: paste spec text
- Click Import
- Review imported queries
- Open key queries and click Send
- Save any adjusted queries
Post-import hardening checklist
- Rename generic query names
- Confirm auth config per query
- Confirm base URL/path compatibility with your environment
- Add or correct bindings for runtime values
- Confirm request body formats
- Validate schema output after first successful run
Importing from Postman
Postman collections should be converted to OpenAPI first.
- Export collection JSON from Postman
- Convert using
postman2openapi - Import converted output into API Editor
- Validate each imported write endpoint carefully
Common import issues
- Unknown/unsupported fields in spec: simplify or clean OpenAPI before import
- Imported query fails auth: map to correct connection auth config
- Paths duplicate base URL: correct path/full URL handling
Related guides
Updated 16 days ago