list_deployments

List deployments as compact rows, filterable by server and status.

Lists deployments as compact rows: id, name, status, serverId, gitBranch, createdAt. Paginated server-side. Read-only.

This is the source of truth for deploymentId. Pass serverId to scope to one server, and filter by status (for example failed) when the user describes a deployment rather than naming it.

Parameters

ParameterTypeRequiredDescription
organizationIdstringYesOrganization to scope the request. From list_organizations.
serverIdstringNoFilter to one server's deployments. From list_servers.
statusstringNoFilter by deployment status (e.g. running, failed).
limitnumberNoMax deployments to return (1–200, default 25).
offsetnumberNoNumber of deployments to skip (default 0).

Returns

A deployments array plus a pagination object with the effective limit, offset, total matches, and returned count.

On this page