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

# Verificação do número no WhatsApp

> Verifica na uazapi se o número do contato da conversa está registrado no WhatsApp. Aplica-se apenas a conversas do canal LITE_WHATSAPP; nos demais casos retorna NOT_APPLICABLE.



## OpenAPI

````yaml https://api.jurichat.com/docs/client/openapi.json get /conversation/{conversationId}/whatsapp-number-check
openapi: 3.1.0
info:
  title: JuriChat API — Documentação para Integradores
  description: ''
  version: 1.0.0
servers:
  - url: https://api.jurichat.com
    description: Production server
security:
  - apiKeyAuth: []
tags: []
paths:
  /conversation/{conversationId}/whatsapp-number-check:
    get:
      tags:
        - Conversations
      summary: Verificação do número no WhatsApp
      description: >-
        Verifica na uazapi se o número do contato da conversa está registrado no
        WhatsApp. Aplica-se apenas a conversas do canal LITE_WHATSAPP; nos
        demais casos retorna NOT_APPLICABLE.
      parameters:
        - schema:
            type: string
            pattern: ^[cC][^\s-]{8,}$
          in: path
          name: conversationId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - VALID
                      - INVALID
                      - UNKNOWN
                      - NOT_APPLICABLE
                  isInWhatsapp:
                    type: boolean
                    nullable: true
                  checkedNumber:
                    type: string
                    nullable: true
                  verifiedName:
                    type: string
                    nullable: true
                  message:
                    type: string
                    nullable: true
                required:
                  - status
                  - isInWhatsapp
                  - checkedNumber
                  - verifiedName
                  - message
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  details: {}
                required:
                  - message
                  - statusCode
                additionalProperties: false
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-jurichat-api-key
      description: >-
        Chave de API do escritório (criada no painel). Envie o valor no header
        x-jurichat-api-key.

````