From c346c00c0d2a64a6a0e47067435404358bc369ae Mon Sep 17 00:00:00 2001
From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com>
Date: Wed, 1 Apr 2026 15:19:48 +0000
Subject: [PATCH] Document auto-conversion of non-string values in Postman
import
Generated-By: mintlify-agent
---
converters/postman-to-bruno.mdx | 4 ++++
get-started/import-export-data/postman-migration.mdx | 4 ++++
2 files changed, 8 insertions(+)
diff --git a/converters/postman-to-bruno.mdx b/converters/postman-to-bruno.mdx
index 3b54e921..88d36461 100644
--- a/converters/postman-to-bruno.mdx
+++ b/converters/postman-to-bruno.mdx
@@ -3,6 +3,10 @@ title: "Postman Conversions"
sidebarTitle: "Postman to Bruno"
---
+
+ 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 `""`.
+
+
### Convert Postman collection to Bruno collection
diff --git a/get-started/import-export-data/postman-migration.mdx b/get-started/import-export-data/postman-migration.mdx
index f29aa624..6468aab3 100644
--- a/get-started/import-export-data/postman-migration.mdx
+++ b/get-started/import-export-data/postman-migration.mdx
@@ -20,6 +20,10 @@ The collection will be downloaded as a JSON file.
Now simply follow the instructions for [Importing Collections](/get-started/import-export-data/import-collections) and you're done!
+
+ 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 `""`.
+
+
## Export Data Dump