Creating Workflows in Deskree Platform 🚀

How to Create a Workflow

In Deskree Platform, you can create workflows using two methods:

1️⃣ JSON Definition – Directly define the workflow using a JSON file.
2️⃣ Visual Canvas Interface – Use a no-code interface to design workflows visually.

Regardless of the method you choose, workflows follow the Nanoservice-ts JSON structure precisely.

📌 Learn more about the Nanoservice-ts workflow format:
🔗 Workflow Structure & Format


1. Creating Workflows via JSON

Workflows can be written in JSON format, defining triggers, nodes, and data mapping.

Example JSON Workflow

{
  "name": "Example Workflow",
  "trigger": {
    "type": "http",
    "config": {
      "method": "POST",
      "endpoint": "/run"
    }
  },
  "nodes": [
    {
      "id": "node-1",
      "type": "apiRequest",
      "config": {
        "url": "https://api.example.com",
        "method": "GET"
      }
    },
    {
      "id": "node-2",
      "type": "dataProcessor",
      "config": {
        "operation": "transform"
      }
    }
  ]
}
  • ✅ Fully customizable
  • ✅ Directly editable in any code editor
  • ✅ Follows Nanoservice-ts JSON structure

2. Creating Workflows via Visual Canvas

For a no-code experience, Deskree Platform provides a Visual Canvas Interface that allows you to:

  • 🖱️ Drag & drop nodes
  • 🔗 Visually connect workflows
  • ⚙️ Configure settings through UI

Once a workflow is built in the visual editor, it is automatically converted into the correct JSON format behind the scenes.

  • ✅ Faster prototyping & workflow design
  • ✅ Easier debugging with real-time visualization

Was this page helpful?