NextGen Knowledge Center

Connector Map

This map is isolated to the current message, and the current connector the message is processing through. For example, if you store a connector map variable in Destination 1, you will not be able to access that value in Destination 2. This is useful to avoid conflicts among common variable names, and to reduce message storage.

  • Get connector map value:
    • var value = connectorMap.get('key');
    • var value = $co('key');
  • Put connector map value:
    • connectorMap.put('key', 'value');
    • $co('key', 'value');