| apiKey | Postman API key | no | — |
| collection | The exported collection.json to be run or URL to the collection, which needs the `apiKey` property | yes | "" |
| environment | The environment.json to be used or URL to the environment, which needs the `apiKey` property | no | — |
| envVar | Additional environment variables, which can also override the ones from the `environment`. | no | — |
| globals | The globals.json to be used | no | — |
| globalVar | Additional global variables, which can also override the ones from the `globals`. | no | — |
| exportGlobals | The relative path to export the globals file from the current run | no | — |
| exportEnvironment | The relative path to export the environment file from the current run | no | — |
| exportCollection | The relative path to export the collection from the current run | no | — |
| iterationCount | Specify the number of iterations to run on the collection. This is usually accompanied by providing a data file reference as `iterationData`. | no | — |
| iterationData | Path to the JSON or CSV file or URL to be used as a data source when running multiple iterations on a collection. | no | — |
| folder | The name or ID of the folder (ItemGroup) in the collection which would be run instead of the entire collection. | no | — |
| workingDir | The path of the directory to be used as the working directory. | no | — |
| insecureFileRead | Allow reading files outside of the working directory. (type: boolean) | no | — |
| timeout | Specify the time (in milliseconds) to wait for the entire collection run to complete execution. (type: number) | no | Infinity |
| timeoutRequest | Specify the time (in milliseconds) to wait for requests to return a response. (type: number) | no | Infinity |
| timeoutScript | Specify the time (in milliseconds) to wait for scripts to return a response. (type: number) | no | Infinity |
| delayRequest | Specify the time (in milliseconds) to wait for between subsequent requests. (type: number) | no | 0 |
| ignoreRedirects | This specifies whether Newman would automatically follow 3xx responses from servers. (type: boolean) | no | false |
| insecure | Disables SSL verification checks and allows self-signed SSL certificates. (type: boolean) | no | false |
| bail | Specify whether or not to stop a collection run on encountering the first test script error. "folder" allows you to skip the entire collection run in case an invalid folder was specified using the `folder` option or an error was encountered in general. "failure" would gracefully stop a collection run after completing the current test script. (possible values: `true` or `false` or `folder` or `failure`) | no | false |
| suppressExitCode | If present, allows overriding the default exit code from the current collection run, useful for bypassing collection result failures. (type: boolean) | no | false |
| reporters | Available reporters: cli, json, html, and junit. | no | cli |
| reporter | Specify options for the reporter(s) declared in options.reporters. (type: any) | no | — |
| color | Enable or Disable colored CLI output. (possible values: `on` or `of` or `auto`) | no | auto |
| sslClientCert | The path to the public client certificate file. | no | — |
| sslClientKey | The path to the private client key file. | no | — |
| sslClientPassphrase | The secret client key passphrase. | no | — |
| sslClientCertList | The path to the client certificate configuration list file. This option takes precedence over sslClientCert, sslClientKey, and slClientPassphrase. When there is no match in this configuration list, sslClientCert is used as a fallback. | no | — |
| sslExtraCaCerts | The path to the file that holds one or more trusted CA certificates in PEM format. | no | — |
| requestAgents | Custom HTTP(S) agents which will be used for making the requests. This allows for the use of various proxies (e.g. socks) | no | — |
| cookieJar | A tough-cookie cookieJar / file path for the current collection run. | no | — |
| outputOriginalSummary | Whether the original summary object of the newman run should be set as output or not (type: `boolean`) | no | false |
| outputGoogleCardV2 | Whether the google cards v2 sections array should be set as output or not (type: `boolean`) | no | false |