Giter Site home page Giter Site logo

Comments (1)

glime-ai avatar glime-ai commented on June 26, 2024

To create a workflow instance without immediately executing it, you can use the /workflow-definitions/{workflow_definition_id}/dispatch endpoint. This will enqueue the workflow for execution and return the workflow instance ID, but it will not start running the workflow automatically.

Here is an example of how you would call this endpoint:

curl --location --request POST 'https://localhost:5001/elsa/api/workflow-definitions/{workflow_definition_id}/dispatch' \
--header 'Content-Type: application/json' \
--header 'Authorization: ApiKey {api_key}'

Make sure to replace {workflow_definition_id} with the actual ID of your workflow definition and {api_key} with your actual API key.

Once you have the workflow instance ID, you can start the workflow instance manually using the /workflow-instances/{workflow_instance_id}/execute endpoint. Here is an example of how to start a workflow instance manually:

curl --location --request POST 'https://localhost:5001/elsa/api/workflow-instances/{workflow_instance_id}/execute' \
--header 'Content-Type: application/json' \
--header 'Authorization: ApiKey {api_key}'

Again, replace {workflow_instance_id} with the ID of the workflow instance you want to start and {api_key} with your actual API key.

By using the /dispatch endpoint to create the instance and the /execute endpoint to start it manually, you can control when the workflow instance begins execution.

from elsa-core.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.