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

# Buscar Mensagens

> Busca mensagens com filtros



## OpenAPI

````yaml GET /api/v1/message/SearchMessage
openapi: 3.0.4
info:
  title: MessageFy API
  description: >-
    API de mensageria multi-canal do MessageFy. Envie e receba mensagens via
    WhatsApp, HTTP, Telegram e outros canais com uma API unificada.
  version: v1
servers:
  - url: https://api-dev.messagefy.io
security:
  - apiKey: []
tags:
  - name: Me
  - name: Configure
  - name: DeleteMessage
  - name: EditMessage
  - name: MessageOutbox
  - name: SearchMessage
  - name: SendMessage
  - name: Account
  - name: ApiKey
  - name: Channel
  - name: Outbox
paths:
  /api/v1/message/SearchMessage:
    get:
      tags:
        - SearchMessage
      parameters:
        - name: OrganizationId
          in: query
          schema:
            type: string
            format: uuid
        - name: AccountId
          in: query
          schema:
            type: string
            format: uuid
        - name: ChannelId
          in: query
          schema:
            type: string
            format: uuid
        - name: ContentText
          in: query
          schema:
            type: string
        - name: Page
          in: query
          schema:
            type: integer
            format: int16
        - name: PerPage
          in: query
          schema:
            type: integer
            format: int16
      responses:
        '200':
          description: OK
          content:
            text/plain; v=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MessageEventStoreDTO'
            application/json; v=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MessageEventStoreDTO'
            text/json; v=1.0:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MessageEventStoreDTO'
        '400':
          description: Bad Request
          content:
            text/plain; v=1.0:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json; v=1.0:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json; v=1.0:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Unauthorized
          content:
            text/plain; v=1.0:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            application/json; v=1.0:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
            text/json; v=1.0:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    MessageEventStoreDTO:
      type: object
      properties:
        messageId:
          type: string
          format: uuid
        packageId:
          type: string
          format: uuid
        channelId:
          type: string
          format: uuid
        accountId:
          type: string
          format: uuid
        organizationId:
          type: string
          format: uuid
        content:
          type: string
        createdAtUtc:
          type: string
          format: date-time
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        status:
          type: integer
          format: int32
          nullable: true
        detail:
          type: string
          nullable: true
        instance:
          type: string
          nullable: true
  securitySchemes:
    apiKey:
      type: apiKey
      description: >-
        Chave de API fornecida pelo painel administrativo do MessageFy. Enviada
        no header de cada requisição. O gateway APISIX valida a chave e injeta
        os headers X-Consumer-* automaticamente.
      name: X-API-KEY
      in: header

````