CRM variables in Webhook URL

CRM variables in Webhook URL

I have a CRM workflow rule calling a webhook endpiont. I would like to be able to use CRM Variables in the URL:


currently the workaround is to wrap the webhook in a custom function and set the workflow rule action to execute that function. that enables using CRM vars inside Deluge's `invokeUrl`, something like:

  1. ...
    my_url = zoho.crm.getOrgVariable("my_crm_var_url");
    invokeurl
  2. [
  3. url :my_url
  4. type :POST
  5. connection:"myConnection"
  6. ];
    ...

is there something against using (global) CRM variables in workflow rule definition or maybe even in other parts other than custom functions and templates? if not please take this as product feature suggestion.