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

# Revoke Invitation

> Revoke a pending invitation.



## OpenAPI

````yaml /openapi.json delete /v1/orgs/{orgId}/projects/{projectId}/access/invitations/{invitationId}
openapi: 3.1.0
info:
  title: Korve API
  version: 0.1.0
  description: >-
    Typed control plane for deploying applications and explicitly provisioning
    their managed infrastructure.
servers:
  - url: https://api.korve.dev
security: []
paths:
  /v1/orgs/{orgId}/projects/{projectId}/access/invitations/{invitationId}:
    delete:
      tags:
        - appAccess
      summary: Revoke Invitation
      description: Revoke a pending invitation.
      operationId: appAccess.revokeInvitation
      parameters:
        - name: orgId
          in: path
          required: true
          schema:
            type: string
          description: The organization's id (UUID) or slug — either form is accepted.
        - name: projectId
          in: path
          required: true
          schema:
            type: string
          description: The project's id (UUID) or slug — either form is accepted.
        - name: invitationId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Invitation revoked.
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  email:
                    type: string
                    format: email
                  status:
                    type: string
                    enum:
                      - pending
                      - accepted
                      - revoked
                      - expired
                  expiresAt:
                    type: string
                    format: date-time
                  acceptedAt:
                    type:
                      - string
                      - 'null'
                    format: date-time
                  revokedAt:
                    type:
                      - string
                      - 'null'
                    format: date-time
                  createdAt:
                    type: string
                    format: date-time
                required:
                  - id
                  - email
                  - status
                  - expiresAt
                  - acceptedAt
                  - revokedAt
                  - createdAt
        '404':
          description: No such project or access resource in this organization.
      security:
        - session: []
components:
  securitySchemes:
    session:
      type: apiKey
      in: cookie
      name: korve.session_token

````