aYOUne
← Automation API

AutomationWorkflows

Singular: AutomationWorkflow — Base URL: https://automation-api.ayoune.app — Access: CRUD — Machine-readable spec (JSON · YAML)

play_circle Try it now beta

Requests are proxied through the consumer-app to *.ayoune.app. Tokens stay in your browser and are forwarded per call.

Example response (recorded) sample

A real, previously recorded GET /:id response of this endpoint — not the live call above. Sensitive fields are masked.

{
  "payload": {
    "_id": "6a9cdf5653ebf41d1e378921",
    "name": "ALERT_YELLOW_GREGAR TYPHO",
    "active": false,
    "version": 1,
    "status": "draft",
    "editorMode": "visual",
    "tags": [],
    "aiGenerated": false,
    "executionCount": 0,
    "successCount": 0,
    "errorCount": 0,
    "avgExecutionTimeMs": 0,
    "createdBy": "6045f4d25704710012485569",
    "nodes": [],
    "edges": [],
    "triggers": [],
    "variables": [],
    "pinData": [],
    "changelog": [],
    "shares": [],
    "createdAt": "2026-09-06T03:34:46.339Z",
    "updatedAt": "2026-09-06T03:34:46.523Z"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://automation-api.ayoune.app/automationworkflows/6a9cdf5653ebf41d1e378921",
        "method": "get",
        "title": "GET",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "relations": [
      {
        "rel": "AutomationTemplates",
        "title": "MODEL_AUTOMATIONTEMPLATE",
        "href": "https://api.ayoune.app/automation/automationtemplates",
        "method": "get",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ],
        "right": "automation.automationtemplates"
      }
    ],
    "debugId": "6aa372a7fb6b2a5c42f4415c",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_AUTOMATIONWORKFLOW",
        "href": "https://api.ayoune.app/automation/automationworkflows/6a9cdf5653ebf41d1e378921/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_AUTOMATIONWORKFLOW",
        "href": "https://api.ayoune.app/automation/automationworkflows/6a9cdf5653ebf41d1e378921",
        "method": "delete",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.23.0",
      "core": "2026.328.0"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2305",
      "reset": "1789099916",
      "resetDate": "Fri Sep 11 2026"
    },
    "responseTime": 96.052237,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpoints

MethodPathDescriptionRight
GET /automationworkflows List with filters/pagination automation.automationworkflows.view
GET /automationworkflows/:id Single record automation.automationworkflows.view
POST /automationworkflows Create new record automation.automationworkflows.new
PUT /automationworkflows Update record automation.automationworkflows.edit
DELETE /automationworkflows/:id Delete record automation.automationworkflows.delete

SDK

import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');

// List all
const list = await ay.automation.automationWorkflows.find().limit(10).exec();

// Single record
const one = await ay.automation.automationWorkflows.findById('OBJECT_ID').exec();

// Create
const created = await ay.automation.automationWorkflows.create({ name: 'Foo' });

See also