-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get started: Import data from another API client #229
Open
Guaris
wants to merge
1
commit into
docs/get-started-section
Choose a base branch
from
DOCU-3908
base: docs/get-started-section
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2,5 +2,80 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||
layout: article-detail | ||||||||||||||||||||||||||||||||||||||||||||||||||||
title: Import an OpenAPI Spec | ||||||||||||||||||||||||||||||||||||||||||||||||||||
--- | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Insomnia supports importing and exporting. Currently, the supported import formats are: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
<!-- for rework: this page should contain a very easy, short example of how to import a spec into Insomnia. We should also provide some information in the introduction paragraph about what a spec is and why you'd want to use one or need one. You can use this doc as an example: https://learning.postman.com/docs/integrations/available-integrations/working-with-openAPI --> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
* Insomnia | ||||||||||||||||||||||||||||||||||||||||||||||||||||
* [Postman v2](https://schema.postman.com/collection/json/v2.1.0/draft-07/docs/index.html) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
* HTTP Archive (HAR) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
* OpenAPI 3.0 and 3.1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
* Swagger | ||||||||||||||||||||||||||||||||||||||||||||||||||||
* Web Services Description Language (WDSL) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
* cURL | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<nav> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="nav nav-tabs" id="nav-tab" role="tablist"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<button class="nav-link side-tabs" id="nav-import-tab" data-bs-toggle="tab" data-bs-target="#nav-import" type="button" role="tab" aria-controls="nav-import" aria-selected="true">Import Data</button> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<button class="nav-link active side-tabs" id="nav-export-tab" data-bs-toggle="tab" data-bs-target="#nav-export" type="button" role="tab" aria-controls="nav-export" aria-selected="false">Export Data</button> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
</nav> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="tab-content" id="nav-tabContent"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="tab-pane fade" id="nav-import" role="tabpanel" aria-labelledby="nav-import-tab"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<h2>Import Data</h2> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<p>Insomnia allows you to import data from a file, URL, or clipboard.</p> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<h3>Steps to Import Data</h3> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<p><b>From a Document or a Collection:</b></p> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Open the Document or Collection dropdown menu.</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Select <b>Import/Export</b>.</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Choose an option from the <b>Import Data</b> dropdown menu.</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
</ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+26
to
+30
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
<p><b>From Preferences:</b></p> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Go to <b>Preferences</b>.</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Navigate to the <b>Data</b> tab.</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Select an option from the <b>Import Data</b> dropdown menu.</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
</ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+32
to
+36
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
<p>Additionally, you can paste copied cURL commands directly into the URL bar.</p> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<div class="tab-pane fade show active" id="nav-export" role="tabpanel" aria-labelledby="nav-export-tab"> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<h2>Export Data</h2> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<p>You can export a Document, Collection, or a single request in Insomnia.</p> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<h3>Steps to Export Data</h3> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<p><b>From Document or Collection:</b></p> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Open the Document or Collection name dropdown menu.</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Select <b>Import/Export</b>.</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Choose an option from the <b>Export Data</b> dropdown menu.</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
</ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<p><b>From Preferences:</b></p> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Go to <b>Preferences</b>.</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Navigate to the <b>Data</b> tab.</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
<li>Select an option from the <b>Export Data</b> dropdown menu.</li> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
</ul> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+42
to
+54
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
<p>If you have selected to export a Document or Collection, you can choose to export the entire set or individual requests within it.</p> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
</div> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
## Resources and Resource Types | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
### Resource IDs | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
Resource IDs are used to map to data in an active workspace. They look like variables within the export file. Some example special resource IDs are: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
{:.table .table-striped} | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Resource ID | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||
----------- | ----------- | ||||||||||||||||||||||||||||||||||||||||||||||||||||
`__WORKSPACE_ID__` | Maps to the ID of the currently active workspace | ||||||||||||||||||||||||||||||||||||||||||||||||||||
`__BASE_ENVIRONMENT_ID__` | Maps to the ID of the active workspace base environment | ||||||||||||||||||||||||||||||||||||||||||||||||||||
`__<NAME>_<NUMBER>__` | Any value matching this format will deterministically generate a new ID at import time | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
### Resource Types | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
We offer a variety of resource types. Resource types outline what is included and excluded from an export file. Some responses and metadata models aren't exported. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
See all resource types listed under [data.resources](https://github.com/Kong/insomnia/blob/7abde2a01700f587179941b3231fb1078fcb1e41/packages/insomnia-app/app/common/export.ts#L185-L198). | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
### Importers Package and Contribution | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
The [Insomnia Importers Package](https://github.com/Kong/insomnia/tree/develop/packages/insomnia/src/utils/importers) supports migrating older export versions to the latest version, and external formats like HAR, Postman, Swagger/OpenAPI, and cURL. If you want to contribute new formats, submit a pull request to [insomnia-importers](https://github.com/Kong/insomnia/tree/develop/packages/insomnia/src/utils/importers) on GitHub. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.