deployment_list
Track and review recent service deployment history in a specific environment using the deployment_list API. Monitor updates, analyze changes, and manage infrastructure effectively with clear deployment insights.
Instructions
[API] List recent deployments for a service in a specific environment
⚡️ Best for: ✓ Viewing deployment history ✓ Monitoring service updates
→ Prerequisites: service_list
→ Next steps: deployment_logs, deployment_trigger
→ Related: service_info, service_restart
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environmentId | Yes | ID of the environment to list deployments from (usually obtained from service_list) | |
limit | No | Optional: Maximum number of deployments to return (default: 10) | |
projectId | Yes | ID of the project containing the service | |
serviceId | Yes | ID of the service to list deployments for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"environmentId": {
"description": "ID of the environment to list deployments from (usually obtained from service_list)",
"type": "string"
},
"limit": {
"description": "Optional: Maximum number of deployments to return (default: 10)",
"type": "number"
},
"projectId": {
"description": "ID of the project containing the service",
"type": "string"
},
"serviceId": {
"description": "ID of the service to list deployments for",
"type": "string"
}
},
"required": [
"projectId",
"serviceId",
"environmentId"
],
"type": "object"
}