Release

List releases

List all releases within an application

get/release

Query parameters

offsetinteger

The starting point for pagination. Defaults to 0 if not provided.

limitinteger

The maximum number of results to return per page.

application_idstring required

The application ID for the releases being listed. Allows up to 10 comma-separated values.

Response

The list of releases matching the query.

Example response

{
  "paging": {
    "total": 30,
    "limit": 200
  },
  "results": [
    {
      "id": 789,
      "semver": "1.0.1-rc1",
      "buildId": 456,
      "status": "active",
      "asset": {
        "id": 123,
        "buildId": 456,
        "type": "docker-image",
        "url": "https://example.com/assets/456"
      },
      "created_at": "2023-10-01T12:34:56Z",
      "updated_at": "2023-10-01T12:34:56Z"
    }
  ]
}

Changes