Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
en:extensions:workflowdesigner:soap-extension [2016/05/08 17:57] swarnat |
en:extensions:workflowdesigner:soap-extension [2016/05/08 19:34] (current) swarnat [Documentation] |
||
|---|---|---|---|
| Line 5: | Line 5: | ||
| You are also able to transfer parameters and use them in your Workflow. | You are also able to transfer parameters and use them in your Workflow. | ||
| - | In the first version there is no option to response some information from Vtiger to your Application. This will implemented within the next update. | + | In the first version there is no option to get a response with information from Vtiger for your Application. |
| + | This will implemented within the next update, together with the option to send files. | ||
| - | Download here: TBD | + | Download here: [[https://shop.stefanwarnat.de/wp-content/plugins/download-monitor/download.php?id=14|Download Module file]] |
| ==== Documentation ==== | ==== Documentation ==== | ||
| + | |||
| + | === Setup === | ||
| + | |||
| + | Install the extension in the Module Manager of VtigerCRM. | ||
| + | |||
| + | === Usage === | ||
| This module integrate itself into the Vtiger own SOAP Webservice. You need to have a valid login, which should be done before you send the operation. | This module integrate itself into the Vtiger own SOAP Webservice. You need to have a valid login, which should be done before you send the operation. | ||
| Line 22: | Line 29: | ||
| <code php> | <code php> | ||
| - | // The SOAP Operation must have this name. You must spefify your operation name | + | // The SOAP Operation must have this name. You must specify your operation name |
| $operationName = "81e4a_leadrequest" | $operationName = "81e4a_leadrequest" | ||
| // This example will transfer 3 parameter to the workflow | // This example will transfer 3 parameter to the workflow | ||
| Line 33: | Line 40: | ||
| ) | ) | ||
| ); | ); | ||
| - | |||
| - | // Now you could create a workflow which access the variable $env["parameter"]["firstname"] | ||
| - | // to get the firstname and equal to access lastname and email. | ||
| </code> | </code> | ||
| + | |||
| + | Now you could create a workflow which access the variable **$env["parameter"]["firstname"]** to get the firstname and similar to access lastname and email. The maximum transportable content depend on your vtiger webserver config. Per default it is set to 2048 KB (2 MB). | ||