Skip to content

List Automations

GET
/admin/automations
curl --request GET \
--url 'http://localhost:9000/admin/automations?limit=20&offset=0'
limit
integer
default: 20
offset
integer
0
order
string
fields
string
q
string
trigger_type
string
is_active
string

OK

Media type application/json
object
automations
Array<object>
object
id
string
name
string
description
string
trigger_type
string
is_active
boolean
trigger_events
string
metadata
object
key
additional properties
any
created_at
string format: date-time
updated_at
string format: date-time
count
integer
limit
integer
offset
integer
Example generated
{
"automations": [
{
"id": "example",
"name": "example",
"description": "example",
"trigger_type": "example",
"is_active": true,
"trigger_events": "example",
"metadata": {},
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z"
}
],
"count": 1,
"limit": 1,
"offset": 1
}