mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-4152] Moved proc services cloud docs to subfolders * [ADF-4152] Fixed links in PS cloud docs * [ADF-4152] Added subfolders and checked links for extensions and insights docs * [ADF-4152] Moved proc services cloud docs to subfolders * [ADF-4152] Fixed links in PS cloud docs * [ADF-4152] Added subfolders and checked links for extensions and insights docs * [ADF-4152] Fixed links in Proc cloud, Insights and Extensions docs * [ADF-4152] Updated links in user guide * [ADF-4152] Fixed broken links in tutorials * [ADF-4152] Fixed remaining links in core docs * [ADF-4152] Fixed remaining links in proc services docs * [ADF-4152] Fixed remaining links in content services docs * [ADF-4152] Fixed links in breaking changes docs * [ADF-4152] Updated main README index page * [ADF-4152] Fixed glitches with preview ext component docs
2.6 KiB
2.6 KiB
Title, Added, Status, Last reviewed
Title | Added | Status | Last reviewed |
---|---|---|---|
Start Process Cloud Service | v3.0.0 | Experimental | 2019-01-09 |
Start Process Cloud Service
Gets process definitions and starts processes.
Class members
Methods
- getProcessDefinitions(appName:
string
):Observable
<
ProcessDefinitionCloud
[]>
Gets the process definitions associated with an app.- appName:
string
- Name of the target app - Returns
Observable
<
ProcessDefinitionCloud
[]>
- Array of process definitions
- appName:
- startProcess(appName:
string
, requestPayload:ProcessPayloadCloud
):Observable
<
ProcessInstanceCloud
>
Starts a process based on a process definition, name, form values or variables.- appName:
string
- name of the Application - requestPayload:
ProcessPayloadCloud
- Details of the process (definition key, name, variables, etc) - Returns
Observable
<
ProcessInstanceCloud
>
- Details of the process instance just started
- appName:
Details
You can use the startProcess
method in much the same way as the startProcess
method in the
Process service (see the Process service page
for an example). However, the cloud version
combines the process details and variables conveniently into the
ProcessPayloadCloud
object.