Categories
Bizagi Connector Tips and Tricks

Tips for Building a Connector

Available Data Types

I recommend using String anywhere if possible, for example, for dates and numbers with decimals. Do the format in Bizagi (from date to string using a specific date format) and then mapp it string-to-string.

Traces

C:\Program Files\Bizagi\Bizagi Studio\ConnectorsService\framework\Logs\Connectors\Sandbox

*** the information logged by LOG.info can be found in the last file (ooba-ooba.log – this is the name of the connector)

AND

C:\Bizagi\Projects\Sandbox\Temporary\Connectors

INs and OUTs

Error Message

let error = RESPONSE(null, { status: err.status, message: err.message, error: err.error }, err.status || 500, JSON.stringify(err) || "Unknown error");
callback(error);

The error message is used to inform the user in the UI regarding the existing problem.