08-16-2018, 07:05 AM
(This post was last modified: 08-16-2018, 07:57 AM by partnerwerk.)
Thank you, I applied the fixed file.
I call this address:
This is the output I get:
I looked up the crmid in the vtiger_crmentity table. The workflow is related to cbCalendar and the crmid is related to a cbCalendar item.
What do I miss?
OK, answering myself in case anybody did not see how to do this:
The URL parameters to be used with evalwf.php are three
$1 = workflowid (table ”com_vtiger_workflows”)
$2 = webservice entity id (table ”ws_entity”)
$3 = crmid (from table ”vtiger_crmentity”)
Now put together the three like this
This seems to be a strange way of doing it. Why not like this?
I call this address:
Code:
/evalwf.php?workflowid=35&crmid=279629
This is the output I get:
Code:
Incorrect crmid:
crmid could not be evaluated as a valid webservice enhanced ID
I looked up the crmid in the vtiger_crmentity table. The workflow is related to cbCalendar and the crmid is related to a cbCalendar item.
What do I miss?
OK, answering myself in case anybody did not see how to do this:
The URL parameters to be used with evalwf.php are three
$1 = workflowid (table ”com_vtiger_workflows”)
$2 = webservice entity id (table ”ws_entity”)
$3 = crmid (from table ”vtiger_crmentity”)
Now put together the three like this
PHP Code:
/evalwf.php?workflowid=$1&crmid=$2x$3
This seems to be a strange way of doing it. Why not like this?
Code:
/evalwf.php?workflowid=$1&webservice_entity_id=$2&crmid=$3