Contact Us 1-800-596-4880

envVar

envVar(variableName: String): String | Null

Returns an environment variable with the specified name or null if the environment variable is not defined.

Parameters

Name Description

variableName

String that provides the name of the environment variable.

Example

This example returns a Mac command console (SHELL) path and returns null on FAKE_ENV_VAR (an undefined environment variable). SHELL is one of the standard Mac environment variables. Also notice that the import command enables you to call the function without prepending the module name to it.

Source

%dw 2.0
import * from dw::System
output application/json
---
{
    "envVars" : [
       "real" : envVar("SHELL"),
       "fake" : envVar("FAKE_ENV_VAR")
    ]
}

Output

"envVars": [
  {
    "real": "/bin/bash"
  },
  {
    "fake": null
  }
]