postman-cli 1.41.2 → 1.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/man/postman.1 +95 -5
- package/package.json +6 -6
package/man/postman.1
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.TH POSTMAN 1 "2026-07-
|
|
1
|
+
.TH POSTMAN 1 "2026-07-15" "v1.43.0" "Postman CLI Manual"
|
|
2
2
|
.SH NAME
|
|
3
3
|
postman \- Command\-line companion utility for Postman
|
|
4
4
|
.SH SYNOPSIS
|
|
@@ -139,6 +139,9 @@ Specify an Id or path to a file containing Postman Globals
|
|
|
139
139
|
.B \-r, \-\-reporters [reporter]
|
|
140
140
|
Specify the reporters to use for the run: cli,json,junit,html. For multiple reporters, provide their names as a comma\-separated list (E.g., \-r cli,json) (default: cli)
|
|
141
141
|
.TP
|
|
142
|
+
.B \-\-output <folder>
|
|
143
|
+
Write a YAML\-based run report to the given folder. Creates a paired `<prefix>.collection\-run\-summary.yaml` (refreshed during the run) and streaming `<prefix>.collection\-run\-executions.yaml`, where prefix defaults to `<collection\-slug>\-<timestamp>`. Gotcha: \-\-output streams run data to file and cannot be combined with the built\-in reporters (\-r/\-\-reporter\-*); doing so exits with an error. This keeps large runs from buffering an entire report in memory.
|
|
144
|
+
.TP
|
|
142
145
|
.B \-\-reporter\-[reporter]\-export <path>
|
|
143
146
|
[Optional] Specify a path to save the report. By default, reports are saved to the /postman\-cli\-reports directory in your current working directory. If the directory doesn't exist, it will be created automatically. If the specified path is an existing directory, the report file will be saved within it. Supported reporters: json, junit and html.
|
|
144
147
|
Type: string, Default value: null
|
|
@@ -267,7 +270,7 @@ Start a mock server from manifest (.json) file
|
|
|
267
270
|
Start mock servers with fault\-injection scenarios from a .sim.yaml file
|
|
268
271
|
.TP
|
|
269
272
|
.B \-\-report\-events
|
|
270
|
-
|
|
273
|
+
Send run results and analytics to Postman
|
|
271
274
|
|
|
272
275
|
.TP Examples:
|
|
273
276
|
Eg. postman collection run 123456\-45159473\-1e45\-1f34\-5678\-1234567890ab
|
|
@@ -393,7 +396,7 @@ Enable the metrics server for health checks
|
|
|
393
396
|
Port for the metrics server (default: 9090)
|
|
394
397
|
.TP
|
|
395
398
|
.B \-\-report\-events
|
|
396
|
-
|
|
399
|
+
Send run events and analytics to Postman
|
|
397
400
|
|
|
398
401
|
.SS "spec"
|
|
399
402
|
Lint and validate Specifications from the command line
|
|
@@ -430,7 +433,7 @@ Output format for the results. [choices: "json", "csv"]
|
|
|
430
433
|
The workspace ID to use for fetching governance rulesets.
|
|
431
434
|
.TP
|
|
432
435
|
.B \-\-report\-events
|
|
433
|
-
|
|
436
|
+
Send lint results and analytics to Postman
|
|
434
437
|
|
|
435
438
|
.SS "spec ai\-readiness"
|
|
436
439
|
Score an OpenAPI specification for AI readiness by ID or local file path.
|
|
@@ -535,7 +538,7 @@ Skip all confirmation prompts
|
|
|
535
538
|
Show detailed logging
|
|
536
539
|
.TP
|
|
537
540
|
.B \-\-report\-events
|
|
538
|
-
|
|
541
|
+
Send workspace push events to Postman
|
|
539
542
|
|
|
540
543
|
.SS "performance"
|
|
541
544
|
Manage performance tests on your collections.
|
|
@@ -2469,6 +2472,9 @@ Permanently delete a webhook.
|
|
|
2469
2472
|
.B webhook status
|
|
2470
2473
|
Show details for a webhook.
|
|
2471
2474
|
.TP
|
|
2475
|
+
.B webhook requests
|
|
2476
|
+
List, inspect, and replay requests received by a webhook.
|
|
2477
|
+
.TP
|
|
2472
2478
|
.B webhook forward
|
|
2473
2479
|
Forward incoming webhook requests to a local port.
|
|
2474
2480
|
|
|
@@ -2606,6 +2612,90 @@ Examples:
|
|
|
2606
2612
|
|
|
2607
2613
|
|
|
2608
2614
|
|
|
2615
|
+
.SS "webhook requests"
|
|
2616
|
+
List, inspect, and replay requests received by a webhook.
|
|
2617
|
+
|
|
2618
|
+
.B Usage:
|
|
2619
|
+
[options] [command]
|
|
2620
|
+
|
|
2621
|
+
.B Subcommands:
|
|
2622
|
+
.TP
|
|
2623
|
+
.B webhook requests list
|
|
2624
|
+
List recent requests received by a webhook.
|
|
2625
|
+
.TP
|
|
2626
|
+
.B webhook requests describe
|
|
2627
|
+
Show details for a request received by a webhook.
|
|
2628
|
+
.TP
|
|
2629
|
+
.B webhook requests replay
|
|
2630
|
+
Replay a request received by a webhook.
|
|
2631
|
+
|
|
2632
|
+
.SS "webhook requests list"
|
|
2633
|
+
List recent requests received by a webhook.
|
|
2634
|
+
|
|
2635
|
+
.B Usage:
|
|
2636
|
+
[options] <webhookId>
|
|
2637
|
+
|
|
2638
|
+
.B Options:
|
|
2639
|
+
.TP
|
|
2640
|
+
.B \-w, \-\-workspace <workspaceId>
|
|
2641
|
+
Postman workspace ID (falls back to .postman/resources.yaml or .postman/config.json)
|
|
2642
|
+
.TP
|
|
2643
|
+
.B \-\-cursor <cursor>
|
|
2644
|
+
Pagination cursor returned by a previous request list response
|
|
2645
|
+
.TP
|
|
2646
|
+
.B \-\-api\-key <key>
|
|
2647
|
+
Postman API key
|
|
2648
|
+
|
|
2649
|
+
.TP Examples:
|
|
2650
|
+
|
|
2651
|
+
Examples:
|
|
2652
|
+
postman webhook requests list 0123456789abcdefghijklmno
|
|
2653
|
+
postman webhook requests list 0123456789abcdefghijklmno \-\-workspace 00000000\-0000\-0000\-0000\-000000000000
|
|
2654
|
+
|
|
2655
|
+
|
|
2656
|
+
|
|
2657
|
+
.SS "webhook requests describe"
|
|
2658
|
+
Show details for a request received by a webhook.
|
|
2659
|
+
|
|
2660
|
+
.B Usage:
|
|
2661
|
+
[options] <webhookId> <requestId>
|
|
2662
|
+
|
|
2663
|
+
.B Options:
|
|
2664
|
+
.TP
|
|
2665
|
+
.B \-w, \-\-workspace <workspaceId>
|
|
2666
|
+
Postman workspace ID (falls back to .postman/resources.yaml or .postman/config.json)
|
|
2667
|
+
.TP
|
|
2668
|
+
.B \-\-api\-key <key>
|
|
2669
|
+
Postman API key
|
|
2670
|
+
|
|
2671
|
+
.TP Examples:
|
|
2672
|
+
|
|
2673
|
+
Examples:
|
|
2674
|
+
postman webhook requests describe 0123456789abcdefghijklmno 11111111\-1111\-4111\-8111\-111111111111
|
|
2675
|
+
|
|
2676
|
+
|
|
2677
|
+
|
|
2678
|
+
.SS "webhook requests replay"
|
|
2679
|
+
Replay a request received by a webhook.
|
|
2680
|
+
|
|
2681
|
+
.B Usage:
|
|
2682
|
+
[options] <webhookId> <requestId>
|
|
2683
|
+
|
|
2684
|
+
.B Options:
|
|
2685
|
+
.TP
|
|
2686
|
+
.B \-w, \-\-workspace <workspaceId>
|
|
2687
|
+
Postman workspace ID (falls back to .postman/resources.yaml or .postman/config.json)
|
|
2688
|
+
.TP
|
|
2689
|
+
.B \-\-api\-key <key>
|
|
2690
|
+
Postman API key
|
|
2691
|
+
|
|
2692
|
+
.TP Examples:
|
|
2693
|
+
|
|
2694
|
+
Examples:
|
|
2695
|
+
postman webhook requests replay 0123456789abcdefghijklmno 11111111\-1111\-4111\-8111\-111111111111
|
|
2696
|
+
|
|
2697
|
+
|
|
2698
|
+
|
|
2609
2699
|
.SS "webhook forward"
|
|
2610
2700
|
Forward incoming webhook requests to a local port.
|
|
2611
2701
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "postman-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.43.0",
|
|
4
4
|
"description": "Official Postman CLI - Command-line companion for API development, testing, and automation",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"postman",
|
|
@@ -58,10 +58,10 @@
|
|
|
58
58
|
"man/"
|
|
59
59
|
],
|
|
60
60
|
"optionalDependencies": {
|
|
61
|
-
"@postman/pm-bin-macos-arm64": "1.
|
|
62
|
-
"@postman/pm-bin-macos-x64": "1.
|
|
63
|
-
"@postman/pm-bin-linux-x64": "1.
|
|
64
|
-
"@postman/pm-bin-linux-arm64": "1.
|
|
65
|
-
"@postman/pm-bin-windows-x64": "1.
|
|
61
|
+
"@postman/pm-bin-macos-arm64": "1.43.0",
|
|
62
|
+
"@postman/pm-bin-macos-x64": "1.43.0",
|
|
63
|
+
"@postman/pm-bin-linux-x64": "1.43.0",
|
|
64
|
+
"@postman/pm-bin-linux-arm64": "1.43.0",
|
|
65
|
+
"@postman/pm-bin-windows-x64": "1.43.0"
|
|
66
66
|
}
|
|
67
67
|
}
|