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

# Revoke Organization Invitation

> Revoke an invitation so its link no longer grants — enforced at sign-up confirmation. The actor
must outrank the invited role. Idempotent on an already-revoked invite; 409 on an accepted one,
since revoking would record a false state without removing the member.



## OpenAPI

````yaml https://app.podero.com/api/partners/v2.0/openapi.json delete /api/partners/v2.0/org/{org_id}/invitations/{invite_id}
openapi: 3.1.0
info:
  title: Podero Partner API
  version: '2.0'
  description: >-
    This API provides a unified interaction point for Podero's partner
    companies.


    The goal of this API is to give partners easily integratable endpoints that
    don't require extensive software

    development. For this reason, the endpoints focus around user and device
    management, setting of preferences

    and high level device controls.


    While direct control of devices is implemented for special use cases such as
    pause power, we abstract away low level

    direct device steering so developers and partners can focus on delivering
    maximum value to end users.
  termsOfService: https://www.podero.com/terms-and-conditions
servers: []
security: []
paths:
  /api/partners/v2.0/org/{org_id}/invitations/{invite_id}:
    delete:
      tags:
        - Organization
      summary: Revoke Organization Invitation
      description: >-
        Revoke an invitation so its link no longer grants — enforced at sign-up
        confirmation. The actor

        must outrank the invited role. Idempotent on an already-revoked invite;
        409 on an accepted one,

        since revoking would record a false state without removing the member.
      operationId: >-
        integrations_api_api_v2_organizations_router_revoke_organization_invitation
      parameters:
        - in: path
          name: org_id
          schema:
            description: The organization ID of the user's organization
            format: uuid
            title: Org Id
            type: string
          required: true
          description: The organization ID of the user's organization
        - in: path
          name: invite_id
          schema:
            description: The invitation to revoke
            format: uuid
            title: Invite Id
            type: string
          required: true
          description: The invitation to revoke
      responses:
        '204':
          description: No Content
      security:
        - OAuth2: []
components:
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        password:
          tokenUrl: /api/partners/v2.0/auth/token
          scopes: {}
        clientCredentials:
          tokenUrl: /api/partners/v2.0/auth/token
          scopes: {}

````