Target - Process
Configuration
The name of this target is ProcessTarget
To configure the process run action, you need to provide the following:
- process
The name of the process to run
Adding a process target
To add a process target to an existing subscription:
- Web Portal
- OpenDataDSL
- REST API
- Select Subscriptions
- Find the subscription you want to add the target to.
- Click the + button next to targets
- Select ProcessTarget
- Fill out the process field appropriately
- Click the save button
// Adding a process run target to an existing subscription
sub = ${subscription:"MySubscription"}
sub.addProcessTarget("myprocess")
save sub
POST https://api.opendatadsl.com/api/subscription/v1
Authorization: Bearer {{token}}
{
"name": "MySubscription",
"targets":[{
"name": "ProcessTarget",
"process": "myprocess"
}]
}