← Automation API
AutomationWorkflows
Singular: AutomationWorkflow — Base URL: https://automation-api.ayoune.app — Access: CRUD
Try it now
beta
Response (live)
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": "6a618b826eefbeb876f15d4e",
"name": "ALTERNATIVE_SCARLET_KIT FISTO",
"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": [],
"createdAt": "2026-07-23T03:33:22.216Z",
"updatedAt": "2026-07-23T03:33:22.216Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://automation-api.ayoune.app/automationworkflows/6a618b826eefbeb876f15d4e",
"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": "6a62dc5df9f895648ea72e1a",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_AUTOMATIONWORKFLOW",
"href": "https://api.ayoune.app/automation/automationworkflows/6a618b826eefbeb876f15d4e/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_AUTOMATIONWORKFLOW",
"href": "https://api.ayoune.app/automation/automationworkflows/6a618b826eefbeb876f15d4e/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.19.0",
"core": "2026.258.0"
},
"rateLimit": {
"limit": "2500",
"remaining": "2334",
"reset": "1784867403",
"resetDate": "Fri Jul 24 2026"
},
"responseTime": 48.107836,
"code": 200,
"status": "success",
"error": false
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| 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' });