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