# Execute Flow API

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:*

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