Deployments REST endpoints
Generated2 endpoints under `/v1`.
Auto-generated from the MarBoba OpenAPI spec, published at
api.marboba.com/v1/openapi.json.
GET /deployments
List deployments
Read-only. Returns the most-recent deployments first (capped at 50 by default, max 500). Supports filtering by appId, status, platform, releaseId, triggeredByUid query params (any combination).
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
appId | query | string | optional | |
status | query | string | optional | |
platform | query | string | optional | |
releaseId | query | string | optional | |
triggeredByUid | query | string | optional | |
limit | query | integer | optional |
Responses
- 200 — Deployments matching the filters, newest-first. Body: object
- 400 — . Body: (no body)
- 401 — . Body: (no body)
Auth: BearerPAT
Operation ID: get_deployments
GET /deployments/{deploymentId}
Get a deployment by id
Responses
- 200 — The requested deployment. Body: object
- 404 — . Body: (no body)
Auth: BearerPAT
Operation ID: get_deployments-deploymentid