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://api.warpbuild.com/api/v1/stacks/string/actions"{
"actions": [
{
"markdown": "string",
"message": "string",
"name": "redirect",
"redirect_url": "string"
}
]
}{
"code": "string",
"description": "string",
"message": "string",
"sub_code": "string",
"sub_message": "string"
}{
"code": "string",
"description": "string",
"message": "string",
"sub_code": "string",
"sub_message": "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.