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

# Enviar contato

> Envia um ou mais cartões de contato (vCards).



## OpenAPI

````yaml openapi.evolution-v2.pt.json POST /message/sendContact/{instance}
openapi: 3.1.0
info:
  title: Evolution V2 Layer
  version: 1.0.0
  description: >-
    Camada de API do Pilot Status — Evolution V2. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-v2`. Autentique com o header
    `apikey` (sua chave `ps_` do Pilot Status). Endpoints de instância/sessão
    NÃO estão disponíveis na camada.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-v2
security:
  - apiKey: []
tags:
  - name: Chamada e Business
  - name: Chat
  - name: Grupo
  - name: Etiqueta (Label)
  - name: Mensagem
  - name: Perfil
  - name: Configurações e Proxy
  - name: Armazenamento (S3)
  - name: Template
paths:
  /message/sendContact/{instance}:
    post:
      tags:
        - Mensagem
      summary: Enviar contato
      description: Envia um ou mais cartões de contato (vCards).
      operationId: post__message_sendContact_instance
      parameters:
        - name: instance
          in: path
          required: true
          schema:
            type: string
          description: O nome de exibição do número no painel do Pilot Status.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                number:
                  type: string
                  description: Telefone do destinatário em E.164 sem `+`, ou um JID.
                  example: '5511999999999'
                contact:
                  type: array
                  description: Array de objetos de contato (veja os campos abaixo).
                  items:
                    type: object
                  example:
                    - fullName: Ismael Nascimento
                      wuid: '5511988888888'
                      phoneNumber: '5511988888888'
                      organization: Pilot Status
                      email: contato@pilotstatus.com.br
                      url: https://pilotstatus.com.br
                contact[].fullName:
                  type: string
                  description: Nome completo do contato.
                contact[].phoneNumber:
                  type: string
                  description: Número de telefone do contato.
                contact[].wuid:
                  type: string
                  description: Identificador de usuário do WhatsApp (string numérica).
                contact[].organization:
                  type: string
                  description: Organização do contato.
                contact[].email:
                  type: string
                  description: Endereço de e-mail do contato.
                contact[].url:
                  type: string
                  description: URL do site do contato.
              required:
                - number
                - contact
                - contact[].fullName
                - contact[].phoneNumber
      responses:
        '200':
          description: Sucesso — corpo de resposta nativo do provedor.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  Sent contact card(s). Returns the persisted Baileys messageRaw
                  envelope. A single contact yields contactMessage; multiple
                  contacts yield contactsArrayMessage.
                properties:
                  key:
                    type: object
                    properties:
                      remoteJid:
                        type: string
                      fromMe:
                        type: boolean
                      id:
                        type: string
                  pushName:
                    type: string
                  status:
                    type: string
                    enum:
                      - ERROR
                      - PENDING
                      - SERVER_ACK
                      - DELIVERY_ACK
                      - READ
                      - PLAYED
                  message:
                    type: object
                    properties:
                      contactMessage:
                        type: object
                        description: Present when a single contact is sent.
                        properties:
                          displayName:
                            type: string
                          vcard:
                            type: string
                            description: vCard 3.0 payload.
                      contactsArrayMessage:
                        type: object
                        description: Present when multiple contacts are sent.
                        properties:
                          displayName:
                            type: string
                          contacts:
                            type: array
                            items:
                              type: object
                              properties:
                                displayName:
                                  type: string
                                vcard:
                                  type: string
                  contextInfo:
                    type:
                      - object
                      - 'null'
                  messageType:
                    type: string
                  messageTimestamp:
                    type: integer
                  instanceId:
                    type: string
                  source:
                    type: string
              example:
                key:
                  remoteJid: 5511999999999@s.whatsapp.net
                  fromMe: true
                  id: 3EB0CONTACT99887766554
                pushName: Você
                status: PENDING
                message:
                  contactMessage:
                    displayName: Maria Silva
                    vcard: |-
                      BEGIN:VCARD
                      VERSION:3.0
                      N:Maria Silva
                      FN:Maria Silva
                      ORG:Pilot Status;
                      item1.TEL;waid=5511988887777:+55 11 98888-7777
                      item1.X-ABLabel:Celular
                      END:VCARD
                contextInfo: null
                messageType: contactMessage
                messageTimestamp: 1720483620
                instanceId: a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d
                source: web
        default:
          description: Erro — erro do provedor ou da camada.
          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>`.

````