Method

POST

Parameters

A JSON object with the following properties:

Result


|sourceActivityIds|Array|The activity ids from the source process definition being mapped.|targetActivityIds|Array|The activity ids from the target process definition being mapped.|updateEventTrigger|Boolean| Configuration flag whether event triggers defined are going to be updated during migration.
|Name|Value|Description
|——-
|sourceActivityIds|Array|The activity ids from the source process definition being mapped.
|targetActivityIds|Array|The activity ids from the target process definition being mapped.
|updateEventTrigger|Boolean| Configuration flag whether event triggers defined are going to be updated during migration.

Response codes

Example

Request Body:

Status 200.

  1. "sourceProcessDefinitionId": "aProcessDefinitionId1",
  2. "targetProcessDefinitionId": "aProcessDefinitionId2",
  3. "instructions": [
  4. "sourceActivityIds": ["aUserTask"],
  5. "targetActivityIds": ["aUserTask"],
  6. "updateEventTrigger": false
  7. {
  8. "targetActivityIds": ["anotherEvent"],
  9. "updateEventTrigger": true
  10. }
  11. ]
  12. }