Request string
Method of the request to run business processes.
Creatio instance URL.
The path to the service that runs business processes. Unmodifiable part of the request.
The address of the web service that runs business processes. Unmodifiable part of the request.
The method of the web service that runs business processes.
Primary methods:
- Execute(). Runs a business process. Lets you pass a set of incoming parameters and return the outcome of the web service execution.
- ExecProcElByUId(). Executes a specific business process element. You can only execute an element of the running process. If Creatio has already executed the process element by the time the method is called, the element is not executed again.
Applicable for the Execute() method.
The name of the business process schema. You can find the name of the business process schema in the Configuration section.
Applicable for the Execute() method.
The variable of the process parameter code. Unmodifiable part of the request.
Applicable for the Execute() method.
The code of the process parameter that stores the outcome of the process execution. If you omit this parameter, the web service runs the business process without waiting for the outcome of the process execution. If the process lacks the parameter code, the web service returns null.
Applicable for the Execute() method.
The variable of the incoming process parameter code. If you pass multiple incoming parameters, combine them using the & character.
Applicable for the Execute() method.
The values of the incoming process parameters.
Applicable for the ExecProcElByUId() method.
The ID of the process element to run.
Response body
The object collection.
The collection object instances.
The name of the Id field.
The IDs of the collection object instances.
The names of the field1, field2, ... fields in the object1, object2, ... collection object instances.
The values of the field1, field2, ... fields in the object1, object2, ... collection object instances. Available only for GET and POST requests.