This is a (growing) list of errors you may find while developing your connectors, and guides to resolving those errors.

  • “Action must return an object” / “Events must return a list of objects”
    • Action methods must end in a module with only one output item to be able to compile. This means that all modules that have multiple outputs (like HTTP.Get, for example) will cause the compilation to fail. Events must return a list of objects, meaning the last module must have a single output that is of “_type” object, and “_array” is true.
  • “Ambiguous output reference” or ”Closing method must return one output”