Skip to content
  • Auto
  • Light
  • Dark
Get Started

Run

Force Run Bundle Automation
client.Catalogs.BundleAutomation.Run(ctx, requestCatalogID, body) (*CatalogBundleAutomationRunResponse, error)
post/api/v1/catalogs/{request_catalog_id}/bundle_automation/run

Invokes the c1.api.requestcatalog.v1.RequestCatalogManagementService.ForceRunBundleAutomation method.

Parameters
requestCatalogIDstring

The requestCatalogId field.

Hide ParametersShow Parameters
Refsfield
optional
param.Field[[]IDstringAppIDstringAppEntitlementRef]

The refs field.

Hide ParametersShow Parameters
IDstring
optional

The id field.

AppIDstring
optional

The appId field.

Returns
CatalogBundleAutomationRunResponseinterface

The ForceRunBundleAutomationResponse message.

Request example Go
package main

import (
  "context"
  "fmt"

  "github.com/stainless-sdks/-go"
  "github.com/stainless-sdks/-go/option"
)

func main() {
  client := conductoronesdk.NewClient(
    option.WithAPIKey("My API Key"),
  )
  response, err := client.Catalogs.BundleAutomation.Run(
    context.TODO(),
    "request_catalog_id",
    conductoronesdk.CatalogBundleAutomationRunParams{

    },
  )
  if err != nil {
    panic(err.Error())
  }
  fmt.Printf("%+v\n", response)
}
200 Example
{}