Skip to content

Get Automation

GET
/admin/automations/{id}
curl --request GET \
--url 'http://localhost:9000/admin/automations/example?limit=20&offset=0'
id
required
string
limit
integer
default: 20
offset
integer
0
order
string
fields
string

OK

Media type application/json
object
automation
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
Example generated
{
"automation": {
"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"
}
}