> ## Documentation Index
> Fetch the complete documentation index at: https://docs.noisemaker.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Resume delivery, acknowledge, revoke, rotate, or confirm rotation of an API key



## OpenAPI

````yaml /openapi.json post /api/v1/workspaces/{workspace}/api-keys/{keyId}
openapi: 3.0.3
info:
  title: ai-cmo.dev Services API
  version: 1.0.0
servers: []
security: []
paths:
  /api/v1/workspaces/{workspace}/api-keys/{keyId}:
    post:
      summary: >-
        Resume delivery, acknowledge, revoke, rotate, or confirm rotation of an
        API key
      operationId: manageApiKey
      parameters:
        - name: workspace
          in: path
          required: true
          schema:
            type: string
            pattern: ^[a-z0-9-]+$
        - name: keyId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiKeyManage'
      responses:
        '200':
          description: Key management or resumed-delivery result
        '201':
          description: Rotated key secret
      security:
        - cookieAuth: []
components:
  schemas:
    ApiKeyManage:
      type: object
      properties:
        action:
          type: string
          enum:
            - acknowledge
            - resume-delivery
            - revoke
            - rotate
            - confirm-rotation
        deliveryId:
          type: string
        name:
          type: string
        idempotencyKey:
          type: string
      required:
        - action
      additionalProperties: false
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: cookie
      name: geo.session
      description: Signed HttpOnly browser session cookie

````