deploy_list
List recent deployments for a project to retrieve operation IDs, statuses, and timestamps. Use for building deploy history UIs or paginating through operations.
Instructions
List recent deploy operations for a project. Returns operation_id, status, release_id, and timestamps. Use this to build deploy-history UIs or to find a recent operation_id to feed into deploy_resume / deploy_events. Pass limit to bound the result set; the gateway also returns a cursor for pagination when there are more.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of operations to return. Forwarded to the gateway as `?limit=`; the gateway picks a default when omitted. | |
| cursor | No | Pagination cursor returned by a previous deploy_list response. Forwarded to the gateway as `?cursor=`. | |
| project_id | Yes | Project ID to list operations for. Required (apikey-gated). |