deploy_list
List recent deploy operations for a project, returning operation IDs, status, release IDs, and timestamps. Use it to build deploy history UIs or retrieve an operation ID for deploy_resume or deploy_events.
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). |