Skip to content
  • Auto
  • Light
  • Dark
Get Started

Add Requestable Entries

Add App Entitlements
post/api/v1/catalogs/{catalog_id}/requestable_entries

Add requestable entitlements to a catalog.

Path Parameters
catalog_idstring

The Id of the request catalog to add app entitlements to. This is a URL value.

Body Parameters
appEntitlementsarray of idstringappIdstringAppEntitlementRef

List of entitlements to add to the request catalog.

createRequestsboolean
optional

Whether or not to create requests for newly added entitlements for users in the catalog. By default, this is false and no requests are created.

Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/catalogs/$CATALOG_ID/requestable_entries \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY" \
    -d '{
      "appEntitlements": [
        {}
      ]
    }'
200 Example
{}