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.
bodyAppEntitlementsfieldCatalogRemoveRequestableEntriesParams
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
{}