Openwork Config Objects API

The Config Objects API from Openwork — 12 operation(s) for config objects.

Operations 16

GET /v1/config-objects List config objects #
POST /v1/config-objects Create config object #
GET /v1/config-objects/{configObjectId} Get config object #
POST /v1/config-objects/{configObjectId}/versions Create config object version #
GET /v1/config-objects/{configObjectId}/versions List config object versions #
GET /v1/config-objects/{configObjectId}/versions/{versionId} Get config object version #
GET /v1/config-objects/{configObjectId}/versions/latest Get latest config object version #
POST /v1/config-objects/{configObjectId}/archive archive config object #
POST /v1/config-objects/{configObjectId}/delete delete config object #
POST /v1/config-objects/{configObjectId}/restore restore config object #
GET /v1/config-objects/{configObjectId}/plugins List config object plugins #
POST /v1/config-objects/{configObjectId}/plugins Attach config object to plugin #
DELETE /v1/config-objects/{configObjectId}/plugins/{pluginId} Remove config object from plugin #
GET /v1/config-objects/{configObjectId}/access List config object access grants #
POST /v1/config-objects/{configObjectId}/access Grant config object access #
DELETE /v1/config-objects/{configObjectId}/access/{grantId} Revoke config object access #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/openwork-config-objects-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

openwork-config-objects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Den Admin Config Objects API
  description: 'OpenAPI spec for the Den control plane API.


    Authentication:

    - Use `Authorization: Bearer <session-token>` for user-authenticated routes that require a Den session.

    - Use `x-api-key: <den-api-key>` for API-key-authenticated routes that accept organization API keys.

    - Public routes like health and documentation do not require authentication.


    Swagger tip: use the security schemes in the Authorize dialog to set either `bearerAuth` or `denApiKey` before trying protected endpoints.'
  version: dev
servers:
- url: https://api.openworklabs.com
tags:
- name: Config Objects
paths:
  /v1/config-objects:
    get:
      operationId: getV1ConfigObjects
      parameters:
      - in: query
        name: cursor
        schema:
          type: string
          minLength: 1
          maxLength: 255
      - in: query
        name: limit
        schema:
          type: integer
          minimum: 1
          maximum: 100
      - in: query
        name: type
        schema:
          type: string
          enum:
          - skill
          - agent
          - command
          - tool
          - mcp
          - hook
          - context
          - custom
      - in: query
        name: status
        schema:
          type: string
          enum:
          - active
          - inactive
          - deleted
          - archived
          - ingestion_error
      - in: query
        name: sourceMode
        schema:
          type: string
          enum:
          - cloud
          - import
          - connector
      - in: query
        name: pluginId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^plg_.*
        description: Den TypeID with 'plg_' prefix and a 26-character base32 suffix.
      - in: query
        name: connectorInstanceId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cin_.*
        description: Den TypeID with 'cin_' prefix and a 26-character base32 suffix.
      - in: query
        name: includeDeleted
        schema:
          type: string
          enum:
          - 'true'
          - 'false'
      - in: query
        name: q
        schema:
          type: string
          minLength: 1
          maxLength: 255
      tags:
      - Config Objects
      summary: List config objects
      description: Lists current config object projections visible to the current organization member.
      responses:
        '200':
          description: Config objects returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchConfigObjectListResponse'
        '400':
          description: The config object query parameters were invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to list config objects.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
    post:
      operationId: postV1ConfigObjects
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                type:
                  type: string
                  enum:
                  - skill
                  - agent
                  - command
                  - tool
                  - mcp
                  - hook
                  - context
                  - custom
                sourceMode:
                  type: string
                  enum:
                  - cloud
                  - import
                  - connector
                pluginIds:
                  maxItems: 100
                  type: array
                  items:
                    description: Den TypeID with 'plg_' prefix and a 26-character base32 suffix.
                    format: typeid
                    type: string
                    minLength: 30
                    maxLength: 30
                    pattern: ^plg_.*
                input:
                  type: object
                  properties:
                    rawSourceText:
                      type: string
                      minLength: 1
                    normalizedPayloadJson:
                      type: object
                      properties: {}
                      additionalProperties: {}
                    parserMode:
                      type: string
                      minLength: 1
                      maxLength: 100
                    schemaVersion:
                      type: string
                      minLength: 1
                      maxLength: 100
                    metadata:
                      type: object
                      properties: {}
                      additionalProperties: {}
              required:
              - type
              - sourceMode
              - input
      tags:
      - Config Objects
      summary: Create config object
      description: Creates a new private config object and initial immutable version.
      responses:
        '201':
          description: Config object created successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchConfigObjectMutationResponse'
        '400':
          description: The config object creation request was invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to create config objects.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '403':
          description: The caller lacks permission to create config objects.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
  /v1/config-objects/{configObjectId}:
    get:
      operationId: getV1ConfigObjectsByConfigObjectId
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      tags:
      - Config Objects
      summary: Get config object
      description: Returns one config object detail when the caller can view it.
      responses:
        '200':
          description: Config object returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchConfigObjectDetailResponse'
        '400':
          description: The config object path parameters were invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to view config objects.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '404':
          description: The config object could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
  /v1/config-objects/{configObjectId}/versions:
    post:
      operationId: postV1ConfigObjectsByConfigObjectIdVersions
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                input:
                  type: object
                  properties:
                    rawSourceText:
                      type: string
                      minLength: 1
                    normalizedPayloadJson:
                      type: object
                      properties: {}
                      additionalProperties: {}
                    parserMode:
                      type: string
                      minLength: 1
                      maxLength: 100
                    schemaVersion:
                      type: string
                      minLength: 1
                      maxLength: 100
                    metadata:
                      type: object
                      properties: {}
                      additionalProperties: {}
                reason:
                  type: string
                  minLength: 1
                  maxLength: 255
              required:
              - input
      tags:
      - Config Objects
      summary: Create config object version
      description: Creates a new immutable config object version.
      responses:
        '201':
          description: Config object version created successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchConfigObjectMutationResponse'
        '400':
          description: The config object version request was invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to create config object versions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '403':
          description: The caller lacks permission to edit this config object.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: The config object could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
    get:
      operationId: getV1ConfigObjectsByConfigObjectIdVersions
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      - in: query
        name: cursor
        schema:
          type: string
          minLength: 1
          maxLength: 255
      - in: query
        name: limit
        schema:
          type: integer
          minimum: 1
          maximum: 100
      - in: query
        name: includeDeleted
        schema:
          type: string
          enum:
          - 'true'
          - 'false'
      tags:
      - Config Objects
      summary: List config object versions
      description: Returns immutable versions for one config object.
      responses:
        '200':
          description: Config object versions returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchConfigObjectVersionListResponse'
        '400':
          description: The version list request was invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to view config object versions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '404':
          description: The config object could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
  /v1/config-objects/{configObjectId}/versions/{versionId}:
    get:
      operationId: getV1ConfigObjectsByConfigObjectIdVersionsByVersionId
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      - in: path
        name: versionId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cov_.*
        required: true
        description: Den TypeID with 'cov_' prefix and a 26-character base32 suffix.
      tags:
      - Config Objects
      summary: Get config object version
      description: Returns one immutable config object version.
      responses:
        '200':
          description: Config object version returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchConfigObjectVersionDetailResponse'
        '400':
          description: The version path parameters were invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to view config object versions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '404':
          description: The config object version could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
  /v1/config-objects/{configObjectId}/versions/latest:
    get:
      operationId: getV1ConfigObjectsByConfigObjectIdVersionsLatest
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      tags:
      - Config Objects
      summary: Get latest config object version
      description: Returns the latest config object version by created_at and id ordering.
      responses:
        '200':
          description: Latest config object version returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchConfigObjectVersionDetailResponse'
        '400':
          description: The latest-version path parameters were invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to view config object versions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '404':
          description: The config object version could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
  /v1/config-objects/{configObjectId}/archive:
    post:
      operationId: postV1ConfigObjectsByConfigObjectIdArchive
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      tags:
      - Config Objects
      summary: archive config object
      description: archive a config object without removing its history.
      responses:
        '200':
          description: Config object lifecycle updated successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchConfigObjectMutationResponse'
        '400':
          description: The lifecycle path parameters were invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to manage config objects.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '403':
          description: The caller lacks permission to manage this config object.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: The config object could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
  /v1/config-objects/{configObjectId}/delete:
    post:
      operationId: postV1ConfigObjectsByConfigObjectIdDelete
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      tags:
      - Config Objects
      summary: delete config object
      description: delete a config object without removing its history.
      responses:
        '200':
          description: Config object lifecycle updated successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchConfigObjectMutationResponse'
        '400':
          description: The lifecycle path parameters were invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to manage config objects.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '403':
          description: The caller lacks permission to manage this config object.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: The config object could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
  /v1/config-objects/{configObjectId}/restore:
    post:
      operationId: postV1ConfigObjectsByConfigObjectIdRestore
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      tags:
      - Config Objects
      summary: restore config object
      description: restore a config object without removing its history.
      responses:
        '200':
          description: Config object lifecycle updated successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchConfigObjectMutationResponse'
        '400':
          description: The lifecycle path parameters were invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to manage config objects.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '403':
          description: The caller lacks permission to manage this config object.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: The config object could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
  /v1/config-objects/{configObjectId}/plugins:
    get:
      operationId: getV1ConfigObjectsByConfigObjectIdPlugins
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      tags:
      - Config Objects
      summary: List config object plugins
      description: Lists plugins that currently include the config object.
      responses:
        '200':
          description: Config object plugins returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchPluginMembershipListResponse'
        '400':
          description: The config object plugin path parameters were invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to view config object plugins.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '404':
          description: The config object could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
    post:
      operationId: postV1ConfigObjectsByConfigObjectIdPlugins
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                pluginId:
                  description: Den TypeID with 'plg_' prefix and a 26-character base32 suffix.
                  format: typeid
                  type: string
                  minLength: 30
                  maxLength: 30
                  pattern: ^plg_.*
                membershipSource:
                  type: string
                  enum:
                  - manual
                  - connector
                  - api
                  - system
              required:
              - pluginId
      tags:
      - Config Objects
      summary: Attach config object to plugin
      description: Adds a config object to a plugin when the caller can edit the target plugin.
      responses:
        '201':
          description: Plugin membership created successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchPluginMembershipMutationResponse'
        '400':
          description: The plugin membership request was invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to manage plugin membership.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '403':
          description: The caller lacks permission to edit the target plugin.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: The config object or plugin could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
  /v1/config-objects/{configObjectId}/plugins/{pluginId}:
    delete:
      operationId: deleteV1ConfigObjectsByConfigObjectIdPluginsByPluginId
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      - in: path
        name: pluginId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^plg_.*
        required: true
        description: Den TypeID with 'plg_' prefix and a 26-character base32 suffix.
      tags:
      - Config Objects
      summary: Remove config object from plugin
      description: Removes one active plugin membership from a config object.
      responses:
        '204':
          description: Plugin membership removed successfully.
        '400':
          description: The plugin membership path parameters were invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to manage plugin membership.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '403':
          description: The caller lacks permission to edit the target plugin.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: The plugin membership could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
  /v1/config-objects/{configObjectId}/access:
    get:
      operationId: getV1ConfigObjectsByConfigObjectIdAccess
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      tags:
      - Config Objects
      summary: List config object access grants
      description: Lists direct, team, and org-wide grants for one config object.
      responses:
        '200':
          description: Config object access grants returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchAccessGrantListResponse'
        '400':
          description: The access path parameters were invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to manage config object access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '403':
          description: The caller lacks permission to manage config object access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: The config object could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
    post:
      operationId: postV1ConfigObjectsByConfigObjectIdAccess
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                orgMembershipId:
                  description: Den TypeID with 'om_' prefix and a 26-character base32 suffix.
                  format: typeid
                  type: string
                  minLength: 29
                  maxLength: 29
                  pattern: ^om_.*
                teamId:
                  description: Den TypeID with 'tem_' prefix and a 26-character base32 suffix.
                  format: typeid
                  type: string
                  minLength: 30
                  maxLength: 30
                  pattern: ^tem_.*
                orgWide:
                  default: false
                  type: boolean
                role:
                  type: string
                  enum:
                  - viewer
                  - editor
                  - manager
              required:
              - role
      tags:
      - Config Objects
      summary: Grant config object access
      description: Creates or reactivates one access grant for a config object.
      responses:
        '201':
          description: Config object access grant created successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PluginArchAccessGrantMutationResponse'
        '400':
          description: The access grant request was invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to manage config object access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '403':
          description: The caller lacks permission to manage config object access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          description: The config object could not be found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFoundError'
  /v1/config-objects/{configObjectId}/access/{grantId}:
    delete:
      operationId: deleteV1ConfigObjectsByConfigObjectIdAccessByGrantId
      parameters:
      - in: path
        name: configObjectId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^cob_.*
        required: true
        description: Den TypeID with 'cob_' prefix and a 26-character base32 suffix.
      - in: path
        name: grantId
        schema:
          format: typeid
          type: string
          minLength: 30
          maxLength: 30
          pattern: ^coa_.*
        required: true
        description: Den TypeID with 'coa_' prefix and a 26-character base32 suffix.
      tags:
      - Config Objects
      summary: Revoke config object access
      description: Soft-revokes one config object access grant.
      responses:
        '204':
          description: Config object access revoked successfully.
        '400':
          description: The access grant path parameters were invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InvalidRequestError'
        '401':
          description: The caller must be signed in to manage config object access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '403':
          description: The caller lacks permission to manage config object access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForbiddenError'
        '404':
          de

# --- truncated at 32 KB (48 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/openwork/refs/heads/main/openapi/openwork-config-objects-api-openapi.yml