Announcement

Collapse
No announcement yet.

Triggering workflows through API

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Triggering workflows through API

    Hi,
    I wanted to ask whether it is possible to trigger workflows through API?

  • #2
    Hi Mark,

    For manual workflow trigger type:

    POST api/v1/WorkflowManual/action/run

    Code:
    {
        "id": "workflow-record-ID",
        "targetId": "target-record-ID"
    }
    Or you can just have a workflow that is triggered on a record creation and create records with the standard REST API POST call.

    Comment

    Working...
    X