GET /stacks/{id}/actions
Lists all actions (operations) that have been performed on a stack. Actions include setup, upgrade, sync, and other infrastructure operations.
In: header
Path Parameters
Stack ID
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/stacks/string/actions"{ "actions": [ { "markdown": "string", "message": "string", "name": "redirect", "redirect_url": "string" } ]}GET /stacks/{id}
Retrieves a specific infrastructure stack by ID. A stack represents the cloud infrastructure configuration (VPC, subnets, security groups, storage buckets) in your cloud account where runners will be deployed. Stacks can be of different types: - **ec2**: AWS EC2 infrastructure - **gce**: Google Cloud Platform infrastructure - **avm**: Azure Virtual Machines infrastructure
GET /stacks/{id}/errors
Lists all errors associated with a specific stack. Use this to diagnose issues with stack provisioning or operations. Supports pagination with `page` and `per_page` query parameters.