Skip to content

List Actions

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

OK

Media type application/json
object
actions
Array<object>
object
id
string
name
string
description
string
action_type
string
is_active
boolean
target_url
string
signing_secret_id
string
target_headers
string
medusa_workflow
string
field_mappings
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
{
"actions": [
{
"id": "example",
"name": "example",
"description": "example",
"action_type": "example",
"is_active": true,
"target_url": "example",
"signing_secret_id": "example",
"target_headers": "example",
"medusa_workflow": "example",
"field_mappings": "example",
"metadata": {},
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z"
}
],
"count": 1,
"limit": 1,
"offset": 1
}