Delete
Delete Bundle Automation
client.Catalogs.BundleAutomation.Delete(ctx, requestCatalogID, body) (*CatalogBundleAutomationDeleteResponse, error)
delete/api/v1/catalogs/{request_catalog_id}/bundle_automation
Invokes the c1.api.requestcatalog.v1.RequestCatalogManagementService.DeleteBundleAutomation method.
Parameters
requestCatalogIDstring
The requestCatalogId field.
bodyBodyfieldCatalogBundleAutomationDeleteParams
Returns
CatalogBundleAutomationDeleteResponseinterface
The DeleteBundleAutomationResponse 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"),
)
bundleAutomation, err := client.Catalogs.BundleAutomation.Delete(
context.TODO(),
"request_catalog_id",
conductoronesdk.CatalogBundleAutomationDeleteParams{
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", bundleAutomation)
}
200 Example
{}