Skip to content

List Secrets

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

OK

Media type application/json
object
secrets
Array<object>
object
id
string
label
string
created_at
string format: date-time
updated_at
string format: date-time
count
integer
limit
integer
offset
integer
Example generated
{
"secrets": [
{
"id": "example",
"label": "example",
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z"
}
],
"count": 1,
"limit": 1,
"offset": 1
}