Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions converters/postman-to-bruno.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ title: "Postman Conversions"
sidebarTitle: "Postman to Bruno"
---

<Info>
Postman allows non-string values (such as numbers) in headers, query parameters, path parameters, and body fields. The converter automatically converts these to strings — for example, `100` becomes `"100"` and `null` becomes an empty string `""`.
</Info>

<Tabs>
<Tab title="Collection">
### Convert Postman collection to Bruno collection
Expand Down
4 changes: 4 additions & 0 deletions get-started/import-export-data/postman-migration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@

Now simply follow the instructions for [Importing Collections](/get-started/import-export-data/import-collections) and you're done!

<Info>
Postman allows non-string values (such as numbers or booleans) in request headers, query parameters, path parameters, and body fields. Bruno expects all of these values to be strings, so during import they are automatically converted — for example, `100` becomes `"100"` and `null` becomes an empty string `""`.

Check warning on line 24 in get-started/import-export-data/postman-migration.mdx

View check run for this annotation

Mintlify / Mintlify Validation (bruno-a6972042) - vale-spellcheck

get-started/import-export-data/postman-migration.mdx#L24

Did you really mean 'booleans'?
</Info>

## Export Data Dump

<Callout type="default">
Expand Down Expand Up @@ -108,5 +112,5 @@
</Info>

<Info>
Postman allows variable values to be numbers, booleans, or objects, but Bruno stores all variable values as strings. During import, non-string values are automatically converted — for example, `5000` becomes `"5000"`, `true` becomes `"true"`, and objects are serialized as JSON strings.

Check warning on line 115 in get-started/import-export-data/postman-migration.mdx

View check run for this annotation

Mintlify / Mintlify Validation (bruno-a6972042) - vale-spellcheck

get-started/import-export-data/postman-migration.mdx#L115

Did you really mean 'booleans'?
</Info>
Loading