GET
/
api
/
v1
/
apps
/
{uuid}
/
deployments
List deployments
curl --request GET \
  --url https://app.miget.com/api/v1/apps/{uuid}/deployments \
  --header 'Authorization: <api-key>'
[
  {
    "uuid": "<string>",
    "state": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "logs_stored_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer token for authentication. Format: 'Bearer {token}'

Headers

X-Workspace-Id
string

Workspace ID (uses default workspace if not provided)

Path Parameters

uuid
string
required

Application UUID

Query Parameters

status
enum<string>

Filter by deployment status (pending, running, completed, failed, cancelling, cancelled)

Available options:
pending,
running,
completed,
failed,
cancelling,
cancelled
period
enum<string>

Filter by time period: '7days', '30days', '90days', or 'all'

Available options:
7days,
30days,
90days,
all

Response

List deployments

uuid
string
required

Unique deployment identifier

state
string
required

Current deployment state (pending, running, completed, failed, cancelling, cancelled)

created_at
string<date-time>
required

Creation timestamp

updated_at
string<date-time>
required

Last update timestamp

logs_stored_at
string<date-time>
required

Timestamp when logs were stored (null if not yet stored)