Execute Flow Parameters

The Execute Flow API requires the following parameters in the payload:

  1. Flow ID: The unique identifier of the flow to be executed.

  2. Tenant ID: The identifier of the tenant or customer company registered in CXF.

  3. Payload: A JSON object containing information relevant to the specific workflow being triggered. The structure of this object may vary based on the workflow.

Example:

{
  "flowId": "your_flow_id",
  "tenantId": ,
  "payload": {
    "recordType": "lead",
    // Additional workflow-specific parameters here
  }
}

Last updated