Browse automations
curl --request GET \
--url https://api.{tenant}.getomneo.com/api/v3/automations{
"data": [
{
"id": 123,
"name": "<string>",
"type": "<string>",
"query": "<string>",
"query_type": "<string>",
"date": "<string>",
"arguments": [
{
"name": "<string>",
"value": "<string>"
}
],
"slot": "<string>",
"actions": [
{
"id": 123,
"uuid": "<string>",
"references_id": "<string>",
"name": "<string>",
"sort_order": 123,
"description": "<string>",
"notes": "<string>",
"arguments": [
{
"name": "<string>",
"value": "<string>",
"is_dynamic": "<string>"
}
],
"created_at": "<string>",
"updated_at": "<string>"
}
],
"description": "<string>",
"notes": "<string>",
"is_active": true,
"frequency": "<string>",
"run_at": 123,
"last_run_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
]
}Automation
Browse automations
A GET to the /automations endpoint allows your application to retrieve all a tenants automations.
GET
/
v3
/
automations
Browse automations
curl --request GET \
--url https://api.{tenant}.getomneo.com/api/v3/automations{
"data": [
{
"id": 123,
"name": "<string>",
"type": "<string>",
"query": "<string>",
"query_type": "<string>",
"date": "<string>",
"arguments": [
{
"name": "<string>",
"value": "<string>"
}
],
"slot": "<string>",
"actions": [
{
"id": 123,
"uuid": "<string>",
"references_id": "<string>",
"name": "<string>",
"sort_order": 123,
"description": "<string>",
"notes": "<string>",
"arguments": [
{
"name": "<string>",
"value": "<string>",
"is_dynamic": "<string>"
}
],
"created_at": "<string>",
"updated_at": "<string>"
}
],
"description": "<string>",
"notes": "<string>",
"is_active": true,
"frequency": "<string>",
"run_at": 123,
"last_run_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
]
}⌘I