Start process and copy data from another instance
Start a new process whose initial data is copied from an existing process instance — useful for retry, resume, and clone-like workflows.
POST
Start a new process instance and seed its data from a previously executed process instance. The new process picks up the data values that were on the source instance at the moment of the call. Common use cases:Documentation Index
Fetch the complete documentation index at: https://docs.flowx.ai/llms.txt
Use this file to discover all available pages before exploring further.
- Replaying a failed workflow with the same input
- Cloning an existing case for a similar customer
- Resuming downstream processing after an interruption
Path parameters
The ID of the workspace that owns the application.
The ID of the application.
The name of the process definition to start.
The UUID of the source process instance. Its data is copied into the new instance at start time.
Request headers
Bearer token. Format:
Bearer <token>.Must be
application/json.Request body
A JSON object with values to merge on top of the copied data. Pass{} to start with the source instance’s data unchanged.
Response
Same shape as Start process by workspace, app, and process name — the new instance’suuid, state, and metadata.
Last modified on June 2, 2026
Start process by build id and process nameStart process from UI with resource definition and inherit values

