Skip to content
  • Auto
  • Light
  • Dark
Get Started

Remove Requestable Entries

Remove App Entitlements
client.Catalogs.RemoveRequestableEntries(ctx, catalogID, body) (*CatalogRemoveRequestableEntriesResponse, error)
delete/api/v1/catalogs/{catalog_id}/requestable_entries

Remove requestable entitlements from a catalog.

Parameters
catalogIDstring

The catalogId for the catalog to remove entitlements from.

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

The list of app entitlements to remove from the catalog.

Hide ParametersShow Parameters
IDstring
optional

The id field.

AppIDstring
optional

The appId field.

Returns
CatalogRemoveRequestableEntriesResponseinterface

Empty response with a status code indicating success

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.RemoveRequestableEntries(
    context.TODO(),
    "catalog_id",
    conductoronesdk.CatalogRemoveRequestableEntriesParams{

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