latestSwagger 2.02026-08-1095121164.0 KB
94758829689e
sites
List Workflows
Lists all workflows for a specific site. Returns the most recent workflows ordered by creation time.
get/v0/sites/{site_id}/workflows
Path parameters
site_idstring required
Site UUID
Response
Example response
{
"workflows": [
{
"created_at": 1234567890,
"description": "Automated backup for the \"dev\" environment",
"environment": "dev",
"finished_at": 1234567900,
"id": "12345678-90ab-cdef-1234-567890abcdef",
"result": "succeeded",
"started_at": 1234567891,
"total_time": 123.45,
"type": "automated_backup",
"user_email": "user@example.com"
}
]
}