Automations
List Automations
List automations across all projects for the current account
GET
List Automations
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List automations across all projects for the current account
curl --request GET \
--url https://api.oviond.com/v1/automations \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "<string>",
"parent_id": "<string>",
"template_id": "<string>",
"sender_id": "<string>",
"timezone": "<string>",
"recipients": [
"<string>"
],
"name": "<string>",
"frequency": "<string>",
"day": "<string>",
"hours": "<string>",
"minutes": "<string>",
"paused": true,
"time_format": "<string>",
"date_text": "<string>",
"last_run_status": "<string>",
"last_run_at": "<string>",
"next_run_at": "<string>",
"is_deleted": true,
"deleted_at": "<string>",
"created_at": null
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.oviond.com/v1/automations \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "<string>",
"parent_id": "<string>",
"template_id": "<string>",
"sender_id": "<string>",
"timezone": "<string>",
"recipients": [
"<string>"
],
"name": "<string>",
"frequency": "<string>",
"day": "<string>",
"hours": "<string>",
"minutes": "<string>",
"paused": true,
"time_format": "<string>",
"date_text": "<string>",
"last_run_status": "<string>",
"last_run_at": "<string>",
"next_run_at": "<string>",
"is_deleted": true,
"deleted_at": "<string>",
"created_at": null
}
]
}