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

# Revoke invite

> Revokes the current invite link and generates a new one.



## OpenAPI

````yaml openapi.evolution-v2.json POST /group/revokeInviteCode/{instance}
openapi: 3.1.0
info:
  title: Evolution V2 Layer
  version: 1.0.0
  description: >-
    Pilot Status API Layer — Evolution V2. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-v2`. Authenticate with the
    `apikey` header (your Pilot Status `ps_` key). Instance/session endpoints
    are NOT available through the layer.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-v2
security:
  - apiKey: []
tags:
  - name: Call & Business
  - name: Chat
  - name: Group
  - name: Label
  - name: Message
  - name: Profile
  - name: Settings & Proxy
  - name: Storage (S3)
  - name: Template
paths:
  /group/revokeInviteCode/{instance}:
    post:
      tags:
        - Group
      summary: Revoke invite
      description: Revokes the current invite link and generates a new one.
      operationId: post__group_revokeInviteCode_instance
      parameters:
        - name: instance
          in: path
          required: true
          schema:
            type: string
          description: The number's display name in the Pilot Status dashboard.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                groupJid:
                  type: string
                  description: >-
                    Group JID (may also be sent as a `groupJid` query
                    parameter).
                  example: 120363000000000000@g.us
              required:
                - groupJid
      responses:
        '200':
          description: Success — provider-native response body.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  Result of revoking the current invite code; a new code is
                  generated.
                properties:
                  revoked:
                    type: boolean
                    description: True when the previous invite code was revoked.
                  inviteCode:
                    type: string
                    description: The newly generated invite code.
              example:
                revoked: true
                inviteCode: Zx9Y8w7V6u5T4s3R2q1P0o
        default:
          description: Error — provider or layer error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                  error:
                    type: string
                  message:
                    type: string
                  response:
                    type: object
              example:
                status: 400
                error: Bad Request
                message: Invalid payload
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: >-
        Your Pilot Status API key (ps_...). Evolution GO also accepts
        `Authorization: Bearer <key>`.

````