Deployments
Deploy and manage app deployments via API
List Deployments
Path Parameters
Parameter
Type
Description
Query Parameters
Parameter
Type
Default
Description
Response
{
"deployments": [
{
"id": 456,
"status": "succeeded",
"created_at": "2024-01-15T10:30:00.000Z",
"updated_at": "2024-01-15T10:32:00.000Z",
"image_tag": "v0.17.0",
"replicas": 2,
"branch": "main",
"commit_sha": "abc123def456",
"commit_message": "Add new dataset",
"error_message": null,
"creation_source": "api",
"created_by": "[email protected]"
},
{
"id": 455,
"status": "failed",
"created_at": "2024-01-15T09:00:00.000Z",
"updated_at": "2024-01-15T09:05:00.000Z",
"image_tag": "v0.16.5",
"replicas": 2,
"branch": "main",
"commit_sha": "def456ghi789",
"commit_message": "Update configuration",
"error_message": "Failed to pull container image",
"creation_source": "portal",
"created_by": "[email protected]"
}
]
}Field
Type
Description
Status
Description
Examples
Create Deployment
Path Parameters
Parameter
Type
Description
Request Body
Field
Type
Description
Response
Examples
Deployment Workflow
Deployment Status Flow
Prerequisites
Common Error Messages
Error
Cause
Solution
Best Practices
Deployment Tracking
Monitoring
Error Handling
CI/CD Integration
Terraform
Last updated
Was this helpful?