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

# Remove a website editor or cancel an invitation

> Revokes a website-scoped editor grant when called with `principalId`, or cancels a pending invitation (so its emailed link stops working) when called with `invitationId` — provide exactly one. Returns 404 when the principal has no direct grant or the invitation does not exist; canceling an invitation that was already accepted or canceled returns 409. Access inherited from an organization role is unaffected. Grants are listed by `websites.editors.list`; invitations are listed by `websites.editorInvitations.list`.



## OpenAPI

````yaml /api-reference/openapi.json delete /websites/{websiteId}/editors
openapi: 3.1.0
info:
  title: Cactal API
  version: 1.0.0
  description: >-
    The Cactal public API. Create, edit, publish, and operate websites
    programmatically. Authenticate every request with an API key sent as
    `Authorization: Bearer <key>`.
servers:
  - url: https://api.cactal.ai/v1
security:
  - apiKey: []
tags:
  - name: Documentation
    description: >-
      Search and read the Cactal product documentation for concepts, guides,
      agent workflows, platform behavior, and API operations.
  - name: Feedback
    description: >-
      Submit free-form product feedback from users and agents to the Cactal
      feedback inbox.
  - name: Websites
    description: >-
      Create and manage websites — the top-level resource that owns source code,
      content, assets, domains, and analytics.
  - name: Website editors
    description: >-
      Grant, list, and revoke website-scoped editor access, and invite
      collaborators to a single website by email.
  - name: API keys
    description: >-
      Create, scope, rotate, and revoke the API keys that authenticate
      programmatic and agent access.
  - name: Source code
    description: >-
      Read and edit the framework source files of a website draft. Mutations
      require an edit lease.
  - name: Publishing
    description: Validate, build, publish, and roll back website versions.
  - name: CMS collections
    description: >-
      Define the content model: collections of structured content owned by a
      website.
  - name: CMS fields
    description: Manage the typed fields that make up a collection schema.
  - name: CMS items
    description: >-
      Create, query, publish, and organize the content entries inside a
      collection.
  - name: Domains
    description: >-
      Manage platform subdomains and custom domains, including DNS verification
      and the primary domain.
  - name: Assets
    description: Upload and manage website files and images served from the Cactal CDN.
  - name: Media generation
    description: >-
      Generate reference-guided website images that are stored as ordinary
      Cactal CDN assets.
  - name: Project Context
    description: >-
      Upload private durable reference material that the website agent can
      search, read, and inspect.
  - name: Analytics
    description: >-
      Read first-party traffic analytics for a website and export datasets as
      CSV.
  - name: Organizations
    description: Manage organizations, members, and organization-wide invitations.
  - name: Audit log
    description: >-
      Read the immutable record of actions performed in an organization by users
      and API keys.
  - name: Billing
    description: >-
      Read billing state and manage plans, site capacity, and prepaid usage
      balance. Every billing operation requires the organization owner role,
      which API keys cannot hold — today these operations are performed from the
      dashboard, return 403 for API-key callers, and are hidden from MCP tool
      lists.
paths:
  /websites/{websiteId}/editors:
    delete:
      tags:
        - Website editors
      summary: Remove a website editor or cancel an invitation
      description: >-
        Revokes a website-scoped editor grant when called with `principalId`, or
        cancels a pending invitation (so its emailed link stops working) when
        called with `invitationId` — provide exactly one. Returns 404 when the
        principal has no direct grant or the invitation does not exist;
        canceling an invitation that was already accepted or canceled returns
        409. Access inherited from an organization role is unaffected. Grants
        are listed by `websites.editors.list`; invitations are listed by
        `websites.editorInvitations.list`.
      operationId: websites.editors.remove
      parameters:
        - name: websiteId
          in: path
          required: true
          schema:
            type: string
            minLength: 1
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                principalId:
                  description: >-
                    Principal whose direct editor grant should be revoked.
                    Provide either this or `invitationId`.
                  type: string
                  minLength: 1
                invitationId:
                  description: >-
                    Pending invitation to cancel so its emailed link stops
                    working. Provide either this or `principalId`.
                  type: string
                  minLength: 1
      responses:
        '200':
          description: The removed editor grant or the canceled invitation.
          content:
            application/json:
              schema:
                oneOf:
                  - type: object
                    properties:
                      status:
                        type: string
                        const: removed
                        description: The principal’s direct editor grant was revoked.
                      grant:
                        type: object
                        properties:
                          websiteId:
                            type: string
                            description: Id of the website the grant applies to.
                          principalId:
                            type: string
                            description: Id of the principal holding the grant.
                          role:
                            type: string
                            enum:
                              - full
                              - content
                            description: >-
                              `full` allows full website editing; `content`
                              allows content editing only.
                          createdAt:
                            description: When the grant was created.
                            type: string
                            format: date-time
                        required:
                          - websiteId
                          - principalId
                          - role
                          - createdAt
                        additionalProperties: false
                    required:
                      - status
                      - grant
                    additionalProperties: false
                  - type: object
                    properties:
                      status:
                        type: string
                        const: canceled
                        description: >-
                          The pending invitation was canceled; its emailed link
                          no longer works.
                      invitation:
                        type: object
                        properties:
                          id:
                            type: string
                            description: Unique invitation id.
                          email:
                            type: string
                            description: Invited email address, normalized to lowercase.
                          role:
                            type: string
                            enum:
                              - full
                              - content
                            description: >-
                              Editor role granted when the invitation is
                              accepted.
                          status:
                            type: string
                            enum:
                              - pending
                              - accepted
                              - canceled
                            description: Lifecycle status of the invitation.
                          expiresAt:
                            description: When the invitation can no longer be accepted.
                            type: string
                            format: date-time
                          createdAt:
                            description: When the invitation was created.
                            type: string
                            format: date-time
                        required:
                          - id
                          - email
                          - role
                          - status
                          - expiresAt
                          - createdAt
                        additionalProperties: false
                    required:
                      - status
                      - invitation
                    additionalProperties: false
        '400':
          description: >-
            Validation failed. The response `message` names the first invalid
            field.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceError'
        '401':
          description: Missing, invalid, expired, or revoked API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceError'
        '403':
          description: The authenticated principal lacks the required capability.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceError'
        '404':
          description: >-
            The resource does not exist or is outside the principal’s access
            scope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceError'
        '409':
          description: The request conflicts with the current state of the resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceError'
        '429':
          description: >-
            Rate limit exceeded. Retry after the number of seconds in the
            `Retry-After` header.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceError'
components:
  schemas:
    ServiceError:
      type: object
      required:
        - kind
        - message
      description: >-
        Canonical error body returned by every non-2xx response. Extra fields
        carry error-specific details.
      properties:
        kind:
          type: string
          enum:
            - validation
            - unauthorized
            - forbidden
            - not_found
            - conflict
            - rate_limited
            - internal
          description: Stable, machine-readable error category.
        message:
          type: string
          description: Human-readable explanation of the failure.
        suggestion:
          type: string
          description: >-
            What to do next when the failure has a known fix; may name the exact
            operation to call.
        validValues:
          type: array
          items:
            type: string
          description: The acceptable values for the failing field, when the set is closed.
      additionalProperties: true
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: >-
        Cactal API key. Create one in the dashboard or via `POST /apiKeys`. The
        plaintext key is shown once at creation.

````