v1

latestOpenAPI 3.0.32026-07-22238629559.2 KB
SupplyChainService

List dependencies

post/api/v1/deployments/{deploymentId}/dependencies

Path parameters

deploymentIdstring int64 required

Deployment ID (numeric). Example: 123. Can be found at /deployments, or in your Settings in the web UI.

Request body

cursorstring int64

Cursor to paginate through the dependencies. Provide a cursor value from the response to retrieve the next page.

deploymentIdstring int64

Deployment ID (numeric). Example: 123. Can be found at /deployments, or in your Settings in the web UI.

pageSizeinteger

Number of dependencies per page. Default: 1000, min: 1, max: 10000.

Example request

{
  "pageSize": 1000
}

Response

OK

cursorstring int64

Pass to next request to get next page of results.

hasMoreboolean

True if there are more dependencies to get.

Example response

{
  "dependencies": [
    {
      "id": "1",
      "name": "dependency1",
      "version": "1.0.0"
    },
    {
      "id": "2",
      "name": "dependency2",
      "version": "2.0.0"
    }
  ]
}