ConductorOne Request Catalog API

The Request Catalog API from ConductorOne — 13 operation(s) for request catalog.

OpenAPI Specification

conductorone-request-catalog-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  description: The ConductorOne API is a HTTP API for managing ConductorOne resources.
  title: ConductorOne Access Conflict Request Catalog API
  version: 0.1.0-alpha
servers:
- description: The ConductorOne API server for the current tenant.
  url: https://{tenantDomain}.conductor.one
  variables:
    tenantDomain:
      default: example
      description: The domain of the tenant to use for this request.
security:
- bearerAuth: []
  oauth: []
tags:
- name: Request Catalog
paths:
  /api/v1/catalogs:
    get:
      description: Get a list of request catalogs.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.List
      parameters:
      - in: query
        name: page_size
        schema:
          description: The pageSize where 0 <= pageSize <= 100. Values < 10 will be set to 10. A value of 0 returns the default page size (currently 25)
          format: int32
          readOnly: false
          type: integer
      - in: query
        name: page_token
        schema:
          description: The page_token field for pagination.
          readOnly: false
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceListResponse'
          description: Successful response
      summary: List
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-datasource: Request Catalogs#read
        terraform-resource: null
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: List
    post:
      description: Creates a new request catalog.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.Create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceCreateRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceGetResponse'
          description: The request catalog management service get response returns a request catalog view with the expanded items in the expanded array indicated by the expand mask in the request.
      summary: Create
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-resource: Access_Profile#create
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: Create
  /api/v1/catalogs/{catalog_id}/requestable_entitlementIDs:
    get:
      description: Invokes the c1.api.requestcatalog.v1.RequestCatalogManagementService.ListAllEntitlementIdsPerApp method.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.ListAllEntitlementIdsPerApp
      parameters:
      - in: path
        name: catalog_id
        required: true
        schema:
          description: The catalogId field.
          readOnly: false
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceListAllEntitlementIdsPerCatalogResponse'
          description: Successful response
      summary: List All Entitlement Ids Per App
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-datasource: null
        terraform-resource: Access_Profile_Requestable_Entries#read
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: ListAllEntitlementIdsPerApp
  /api/v1/catalogs/{catalog_id}/requestable_entitlements:
    get:
      description: List entitlements in a catalog that are requestable.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.ListEntitlementsPerCatalog
      parameters:
      - in: path
        name: catalog_id
        required: true
        schema:
          description: The catalogId field.
          readOnly: false
          type: string
      - in: query
        name: page_size
        schema:
          description: The pageSize field.
          format: int32
          readOnly: false
          type: integer
      - in: query
        name: page_token
        schema:
          description: The pageToken field.
          readOnly: false
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceListEntitlementsPerCatalogResponse'
          description: The RequestCatalogManagementServiceListEntitlementsPerCatalogResponse message contains a list of results and a nextPageToken if applicable.
      summary: List Entitlements Per Catalog
      tags:
      - Request Catalog
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: ListEntitlementsPerCatalog
  /api/v1/catalogs/{catalog_id}/requestable_entitlements/update:
    post:
      description: Invokes the c1.api.requestcatalog.v1.RequestCatalogManagementService.UpdateAppEntitlements method.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.UpdateAppEntitlements
      parameters:
      - in: path
        name: catalog_id
        required: true
        schema:
          description: The Id of the request catalog to get app entitlement to. This is a URL value.
          readOnly: false
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceUpdateAppEntitlementsRequestInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceUpdateAppEntitlementsResponse'
          description: The RequestCatalogManagementServiceUpdateAppEntitlementsResponse object is is the response from UpdateAppEntitlements endpoint.
      summary: Update App Entitlements
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-resource: Access_Profile_Requestable_Entries#update
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: UpdateAppEntitlements
  /api/v1/catalogs/{catalog_id}/requestable_entries:
    delete:
      description: Remove requestable entitlements from a catalog.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.RemoveAppEntitlements
      parameters:
      - in: path
        name: catalog_id
        required: true
        schema:
          description: The catalogId for the catalog to remove entitlements from.
          readOnly: false
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceRemoveAppEntitlementsRequestInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceRemoveAppEntitlementsResponse'
          description: Empty response with a status code indicating success
      summary: Remove App Entitlements
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-resource: Access_Profile_Requestable_Entries#delete
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: RemoveAppEntitlements
    post:
      description: Add requestable entitlements to a catalog.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.AddAppEntitlements
      parameters:
      - in: path
        name: catalog_id
        required: true
        schema:
          description: The Id of the request catalog to add app entitlements to. This is a URL value.
          readOnly: false
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceAddAppEntitlementsRequestInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceAddAppEntitlementsResponse'
          description: Empty response with a status code indicating success.
      summary: Add App Entitlements
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-resource: Access_Profile_Requestable_Entries#create
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: AddAppEntitlements
  /api/v1/catalogs/{catalog_id}/visibility_bindings:
    delete:
      description: Remove visibility bindings (access entitlements) to a catalog.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.RemoveAccessEntitlements
      parameters:
      - in: path
        name: catalog_id
        required: true
        schema:
          description: The catalogId for the catalog to remove access entitlements from.
          readOnly: false
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceRemoveAccessEntitlementsRequestInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceRemoveAccessEntitlementsResponse'
          description: Empty response with a status code indicating success.
      summary: Remove Access Entitlements
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-resource: Access_Profile_Visibility_Bindings#delete
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: RemoveAccessEntitlements
    post:
      description: Add visibility bindings (access entitlements) to a catalog.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.AddAccessEntitlements
      parameters:
      - in: path
        name: catalog_id
        required: true
        schema:
          description: The Id of the request catalog to add access entitlements to. This is a URL value.
          readOnly: false
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceAddAccessEntitlementsRequestInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceAddAccessEntitlementsResponse'
          description: Empty response with a status code indicating success.
      summary: Add Access Entitlements
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-resource: Access_Profile_Visibility_Bindings#create
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: AddAccessEntitlements
  /api/v1/catalogs/{catalog_id}/visibility_entitlements:
    get:
      description: List visibility bindings (access entitlements) for a catalog.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.ListEntitlementsForAccess
      parameters:
      - in: path
        name: catalog_id
        required: true
        schema:
          description: The catalogId field.
          readOnly: false
          type: string
      - in: query
        name: page_size
        schema:
          description: The pageSize field.
          format: int32
          readOnly: false
          type: integer
      - in: query
        name: page_token
        schema:
          description: The pageToken field.
          readOnly: false
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceListEntitlementsForAccessResponse'
          description: The RequestCatalogManagementServiceListEntitlementsForAccessResponse message contains a list of results and a nextPageToken if applicable.
      summary: List Entitlements For Access
      tags:
      - Request Catalog
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: ListEntitlementsForAccess
  /api/v1/catalogs/{id}:
    delete:
      description: Delete a catalog.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.Delete
      parameters:
      - in: path
        name: id
        required: true
        schema:
          description: The Id of the RequestCatalog to delete.
          readOnly: false
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceDeleteRequestInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceDeleteResponse'
          description: Empty response with a status code indicating success.
      summary: Delete
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-resource: Access_Profile#delete
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: Delete
    get:
      description: Get a catalog.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.Get
      parameters:
      - in: path
        name: id
        required: true
        schema:
          description: The id field.
          readOnly: false
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceGetResponse'
          description: The request catalog management service get response returns a request catalog view with the expanded items in the expanded array indicated by the expand mask in the request.
      summary: Get
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-datasource: Access_Profile#read
        terraform-resource: Access_Profile#read
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: Get
    post:
      description: Update a catalog.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.Update
      parameters:
      - in: path
        name: id
        required: true
        schema:
          description: The id of the request catalog.
          readOnly: false
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceUpdateRequestInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogManagementServiceGetResponse'
          description: The request catalog management service get response returns a request catalog view with the expanded items in the expanded array indicated by the expand mask in the request.
      summary: Update
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-resource: Access_Profile#update
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: Update
  /api/v1/catalogs/{request_catalog_id}/bundle_automation:
    delete:
      description: Invokes the c1.api.requestcatalog.v1.RequestCatalogManagementService.DeleteBundleAutomation method.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.DeleteBundleAutomation
      parameters:
      - in: path
        name: request_catalog_id
        required: true
        schema:
          description: The requestCatalogId field.
          readOnly: false
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.DeleteBundleAutomationRequestInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.DeleteBundleAutomationResponse'
          description: Successful response
      summary: Delete Bundle Automation
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-resource: BundleAutomation#delete
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: DeleteBundleAutomation
    get:
      description: Get bundle automation
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.GetBundleAutomation
      parameters:
      - in: path
        name: request_catalog_id
        required: true
        schema:
          description: The requestCatalogId field.
          readOnly: false
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.BundleAutomation'
          description: Successful response
      summary: Get Bundle Automation
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-datasource: BundleAutomation#read
        terraform-resource: BundleAutomation#read
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: GetBundleAutomation
    post:
      description: Invokes the c1.api.requestcatalog.v1.RequestCatalogManagementService.SetBundleAutomation method.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.SetBundleAutomation
      parameters:
      - in: path
        name: request_catalog_id
        required: true
        schema:
          description: The requestCatalogId field.
          readOnly: false
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.SetBundleAutomationRequestInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.BundleAutomation'
          description: Successful response
      summary: Set Bundle Automation
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-resource: BundleAutomation#update
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: SetBundleAutomation
  /api/v1/catalogs/{request_catalog_id}/bundle_automation/create:
    post:
      description: Invokes the c1.api.requestcatalog.v1.RequestCatalogManagementService.CreateBundleAutomation method.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.CreateBundleAutomation
      parameters:
      - in: path
        name: request_catalog_id
        required: true
        schema:
          description: The requestCatalogId field.
          readOnly: false
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.CreateBundleAutomationRequestInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.BundleAutomation'
          description: Successful response
      summary: Create Bundle Automation
      tags:
      - Request Catalog
      x-speakeasy-entity-operation:
        terraform-resource: BundleAutomation#create
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: CreateBundleAutomation
  /api/v1/catalogs/{request_catalog_id}/bundle_automation/resume:
    post:
      description: Invokes the c1.api.requestcatalog.v1.RequestCatalogManagementService.ResumePausedBundleAutomation method.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.ResumePausedBundleAutomation
      parameters:
      - in: path
        name: request_catalog_id
        required: true
        schema:
          description: The requestCatalogId field.
          readOnly: false
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.ResumePausedBundleAutomationRequestInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.ResumePausedBundleAutomationResponse'
          description: Successful response
      summary: Resume Paused Bundle Automation
      tags:
      - Request Catalog
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: ResumePausedBundleAutomation
  /api/v1/catalogs/{request_catalog_id}/bundle_automation/run:
    post:
      description: Invokes the c1.api.requestcatalog.v1.RequestCatalogManagementService.ForceRunBundleAutomation method.
      operationId: c1.api.requestcatalog.v1.RequestCatalogManagementService.ForceRunBundleAutomation
      parameters:
      - in: path
        name: request_catalog_id
        required: true
        schema:
          description: The requestCatalogId field.
          readOnly: false
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.ForceRunBundleAutomationRequestInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.ForceRunBundleAutomationResponse'
          description: Successful response
      summary: Force Run Bundle Automation
      tags:
      - Request Catalog
      x-speakeasy-group: RequestCatalogManagement
      x-speakeasy-name-override: ForceRunBundleAutomation
  /api/v1/search/request_catalog/entitlements:
    post:
      description: Search request catalogs based on filters specified in the request body.
      operationId: c1.api.requestcatalog.v1.RequestCatalogSearchService.SearchEntitlements
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogSearchServiceSearchEntitlementsRequest'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogSearchServiceSearchEntitlementsResponse'
          description: The RequestCatalogSearchServiceSearchEntitlementsResponse message contains a list of results and a nextPageToken if applicable.
      summary: Search Entitlements
      tags:
      - Request Catalog
      x-speakeasy-group: RequestCatalogSearch
      x-speakeasy-name-override: SearchEntitlements
components:
  schemas:
    c1.api.requestcatalog.v1.RequestCatalogManagementServiceListResponse:
      description: The RequestCatalogManagementServiceListResponse message.
      properties:
        expanded:
          description: List of serialized related objects.
          items:
            additionalProperties: true
            description: Contains an arbitrary serialized message along with a @type that describes the type of the serialized message.
            properties:
              '@type':
                description: The type of the serialized message.
                type: string
            readOnly: false
            type: object
          nullable: true
          readOnly: false
          type: array
        list:
          description: The list of request catalogs.
          items:
            $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalogView'
          nullable: true
          readOnly: false
          type: array
        nextPageToken:
          description: "The nextPageToken is shown for the next page if the number of results is larger than the max page size.\n The server returns one page of results and the nextPageToken until all results are retreived.\n To retrieve the next page, use the same request and append a pageToken field with the value of nextPageToken shown on the previous page."
          readOnly: false
          type: string
      title: Request Catalog Management Service List Response
      type: object
      x-speakeasy-name-override: RequestCatalogManagementServiceListResponse
    c1.api.app.v1.AppEntitlementUserBinding:
      description: The AppEntitlementUserBinding represents the relationship that gives an app user access to an app entitlement
      properties:
        appEntitlementId:
          description: The ID of the app entitlement that the app user has access to
          readOnly: false
          type: string
        appId:
          description: The ID of the app associated with the app entitlement
          readOnly: false
          type: string
        appUserId:
          description: The ID of the app user that has access to the app entitlement
          readOnly: false
          type: string
        createdAt:
          format: date-time
          readOnly: true
          type: string
        deletedAt:
          format: date-time
          readOnly: true
          type: string
        deprovisionAt:
          format: date-time
          readOnly: true
          type: string
        grantSources:
          description: The grantSources field.
          items:
            $ref: '#/components/schemas/c1.api.app.v1.AppEntitlementRef'
          nullable: true
          readOnly: false
          type: array
      title: App Entitlement User Binding
      type: object
      x-speakeasy-name-override: AppEntitlementUserBinding
    c1.api.requestcatalog.v1.RequestCatalogManagementServiceDeleteRequestInput:
      description: Delete a request catalog by Id. It uses URL value for input.
      title: Request Catalog Management Service Delete Request
      type: object
      x-speakeasy-entity: Access_Profile
      x-speakeasy-name-override: RequestCatalogManagementServiceDeleteRequest
    c1.api.app.v1.AppEntitlementView:
      description: The app entitlement view contains the serialized app entitlement and paths to objects referenced by the app entitlement.
      properties:
        appEntitlement:
          $ref: '#/components/schemas/c1.api.app.v1.AppEntitlement'
        appPath:
          description: JSONPATH expression indicating the location of the App object in the  array.
          readOnly: false
          type: string
        appResourcePath:
          description: JSONPATH expression indicating the location of the App Resource Type object in the expanded array.
          readOnly: false
          type: string
        appResourceTypePath:
          description: JSONPATH expression indicating the location of the App Resource object in the  array.
          readOnly: false
          type: string
      title: App Entitlement View
      type: object
      x-speakeasy-name-override: AppEntitlementView
    c1.api.requestcatalog.v1.ResumePausedBundleAutomationRequestInput:
      description: The ResumePausedBundleAutomationRequest message.
      title: Resume Paused Bundle Automation Request
      type: object
      x-speakeasy-name-override: ResumePausedBundleAutomationRequest
    c1.api.requestcatalog.v1.DeleteBundleAutomationRequestInput:
      description: The DeleteBundleAutomationRequest message.
      title: Delete Bundle Automation Request
      type: object
      x-speakeasy-name-override: DeleteBundleAutomationRequest
    c1.api.requestcatalog.v1.RequestCatalogManagementServiceRemoveAccessEntitlementsRequestInput:
      description: "The RequestCatalogManagementServiceRemoveAccessEntitlementsRequest message is used to remove access entitlements from a request catalog.\n The access entitlements are used to determine which users can view the request catalog."
      properties:
        accessEntitlements:
          description: The list of access entitlements to remove from the catalog.
          items:
            $ref: '#/components/schemas/c1.api.app.v1.AppEntitlementRef'
          nullable: true
          readOnly: false
          type: array
      title: Request Catalog Management Service Remove Access Entitlements Request
      type: object
      x-speakeasy-entity: Access_Profile_Visibility_Bindings
      x-speakeasy-name-override: RequestCatalogManagementServiceRemoveAccessEntitlementsRequest
    c1.api.policy.v1.ConnectorProvision.DefaultBehavior:
      description: The DefaultBehavior message.
      nullable: true
      properties:
        connectorId:
          description: "this checks if the entitlement is enabled by provisioning in a specific connector\n this can happen automatically and doesn't need any extra info"
          readOnly: false
          type: string
      title: Default Behavior
      type: object
      x-speakeasy-name-override: DefaultBehavior
    c1.api.policy.v1.ConnectorProvision.SaveToVault:
      description: The SaveToVault message.
      nullable: true
      properties:
        vaultIds:
          description: The vaultIds field.
          items:
            type: string
          nullable: true
          readOnly: false
          type: array
      title: Save To Vault
      type: object
      x-speakeasy-name-override: SaveToVault
    c1.api.requestcatalog.v1.RequestCatalogView:
      description: The request catalog view contains the serialized request catalog and paths to objects referenced by the request catalog.
      properties:
        accessEntitlementsPath:
          description: JSONPATH expression indicating the location of the access entitlement objects, that the request catalog allows users to request, in the array.
          readOnly: false
          type: string
        createdByUserPath:
          description: JSONPATH expression indicating the location of the User object, that created the request catalog, in the array.
          readOnly: false
          type: string
        memberCount:
          description: Total number of the members of the catalog
          format: int64
          readOnly: false
          type: string
        requestCatalog:
          $ref: '#/components/schemas/c1.api.requestcatalog.v1.RequestCatalog'
      title: Request Catalog View
      type: object
      x-speakeasy-name-override: RequestCatalogView
    c1.api.requestcatalog.v1.RequestCatalogExpandMask:
      description: The RequestCatalogExpandMask includes the paths in the catalog view to expand in the return value of this call.
      properties:
        paths:
          description: An array of paths to be expanded in the response. May be any combination of "*", "created_by_user_id", "app_ids", and "access_entitlements".
          items:
            type: string
          nullable: true
          readOnly: false
          type: array
      title: Request Catalog Expand Mask
      type: object
      x-speakeasy-name-override: RequestCatalogExpandMask
    c1.api.requestcatalog.v1.RequestCatalogManagementServiceUpdateAppEntitlementsRequestInput:
      description: The RequestCatalogManagementServiceUpdateAppEntitlementsRequest object is used to update app entitlements to a request catalog id.
      properties:
        appEntitlements:
          description: The entitlement to get from the request catalog.
          items:
            $ref: '#/components/schemas/c1.api.app.v1.AppEntitlementRef'
          nullable: true
          readOnly: false
          type: array
      required:
      - appEntitlements
      title: Request Catalog Management Service Update App Entitlements Request
      type: object
      x-speakeasy-entity: Access_Profile_Requestable_Entries
      x-speakeasy-name-override: Request

# --- truncated at 32 KB (75 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/conductorone/refs/heads/main/openapi/conductorone-request-catalog-api-openapi.yml