bizproc.workflow.start
bizproc.workflow.start launches a worfklow
Method | Description |
---|---|
TEMPLATE_ID | Workflow template ID |
DOCUMENT_ID | Workflow document ID |
PARAMETERS | Workflow parameters ID (if the template has parameters) |
Example
function startWf(leadId, tplId, cb) { if (!leadId) { alert('Lead not selected'); return; } var params = { TEMPLATE_ID: tplId, DOCUMENT_ID: ['crm', 'CCrmDocumentLead', leadId], PARAMETERS: null }; BX24.callMethod( 'bizproc.workflow.start', params, function(result) { if(result.error()) alert("Error: " + result.error()); else if (cb) cb(); } ); }
© «Bitrix Inc.»,
2001-2021,
«Bitrix Inc.», 2021
User Comments
User comments are not part of official documentation. Use information provided by other users in the comments at your own risk.The User Comments section is not to be used as a feature discussion board. Only registered users can post comments. Your comment will be visible once it has been approved by the moderator.