POST /api-web/api/bpm/processes

As of Version

product version 2020 Autumn | component version 

Request MethodGET
Response FormatJSON
Description

Creates a process instance specified by the data passed as JSON in the request body.

Response HTTP status codes:

HTTP Status CodeMeaning
200OK
401Unauthorized
Request Example

https://<host>/api-web/api/bpm/process/instances

request body
{
  "attachments": [
    "string"
  ],
  "businessKey": "string",
  "name": "string",
  "processDefinitionKey": "string",
  "subject": "string",
  "variables": [
    {
      "name": "string",
      "scope": "string",
      "type": "string",
      "value": {}
    }
  ]
}
Response Example

200 OK

response body
{}