Skip to main content
Infrastructure/Lifecycle
GETLifecycleSince 1.0SynchronousAuth Required

ListDepotPackages

List all available packages from the configured depot source

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Request Inputs

This API requires no request parameters.

Responses

200 OK

On success, this API returns the following response structure.

  • cachedBoolean

    Whether the package list was served from cache

    Example: true

  • cachedAtString

    Cached at

    Example: 2026-01-15T08:00:00Z

  • itemsList

    Collection of result items

    Example: (nested array)

    • nameString

      Package name in the depot

      Example: zcf-core

    • versionString

      Available version of the package

      Example: 1.2.0

    • sizeMbString

      Package size in megabytes

      Example: 256

    • productString

      Product this package belongs to

      Example: zcf

    • statusString

      Publication status of the package

      Example: available

    • componentsList

      List of affected or referenced components

      Example: item1,item2

    • archesList

      Arches for this resource

      Example: item1,item2

    • releaseString

      Available release of the package

      Example: 221

  • totalInteger

    Total number of packages available in the depot

    Example: 12

  • limitInteger

    Maximum number of items returned per page

    Example: 20

  • offsetInteger

    Number of items skipped before the current page

    Example: 20

Endpoint

GET/api/v1/lifecycle/depot/packages

/api/v1/lifecycle/depot/packages

Operation ID

ListDepotPackages

Permalink

Request Example

curl -X GET '{host}/api/v1/lifecycle/depot/packages' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "cached": true,
  "cachedAt": "example",
  "items": [
    {}
  ],
  "total": 12,
  "limit": 20,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history