> ## 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.

# Send invite

> Sends the group invite link to one or more phone numbers.



## OpenAPI

````yaml openapi.evolution-v2.json POST /group/sendInvite/{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/sendInvite/{instance}:
    post:
      tags:
        - Group
      summary: Send invite
      description: Sends the group invite link to one or more phone numbers.
      operationId: post__group_sendInvite_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.
                  example: 120363000000000000@g.us
                description:
                  type: string
                  description: Message text sent alongside the invite.
                  example: Entre no nosso grupo!
                numbers:
                  type: array
                  items:
                    type: string
                  description: Phone numbers (digits only) to send the invite to.
                  example:
                    - '5511999999999'
                    - '5511888888888'
              required:
                - groupJid
                - description
                - numbers
      responses:
        '200':
          description: Success — provider-native response body.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  Result of sending the group invite link to the provided
                  numbers.
                properties:
                  send:
                    type: boolean
                    description: >-
                      True when the invite message was dispatched to all
                      numbers.
                  inviteUrl:
                    type: string
                    description: The invite link that was sent.
              example:
                send: true
                inviteUrl: https://chat.whatsapp.com/HkQ1a2B3c4D5e6F7g8H9i0
        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>`.

````