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

# Listar mensagens rápidas

> Lista as mensagens rápidas da inbox. Filtros opcionais por título e tags.



## OpenAPI

````yaml https://api.jurichat.com/docs/client/openapi.json get /fast-message/
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:
  /fast-message/:
    get:
      tags:
        - FastMessages
      summary: Listar mensagens rápidas
      description: >-
        Lista as mensagens rápidas da inbox. Filtros opcionais por título e
        tags.
      parameters:
        - schema:
            type: string
          in: query
          name: inboxId
          required: true
          description: ID da inbox. Obrigatório para filtrar as mensagens rápidas.
        - schema:
            type: string
          in: query
          name: title
          required: false
          description: Filtra por título (correspondência parcial).
        - schema:
            type: array
            items:
              type: string
          in: query
          name: tag
          required: false
          description: Filtra por IDs de tags.
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      description: ID da mensagem rápida.
                    title:
                      type: string
                      description: Título da mensagem rápida.
                    content:
                      type: string
                      description: Texto da mensagem rápida.
                    inboxId:
                      type: string
                      description: ID da inbox à qual a mensagem rápida pertence.
                    tag:
                      type: array
                      items:
                        type: object
                        properties:
                          id:
                            type: string
                            description: ID da tag.
                          name:
                            type: string
                            description: Nome da tag.
                          color:
                            type: string
                            description: 'Cor da tag (ex.: código hexadecimal).'
                        required:
                          - id
                          - name
                          - color
                        additionalProperties: false
                      description: Tags associadas à mensagem rápida.
                    createdAt:
                      type: string
                      format: date-time
                      description: Data e hora de criação.
                    updatedAt:
                      type: string
                      format: date-time
                      description: Data e hora da última atualização.
                  required:
                    - id
                    - title
                    - content
                    - inboxId
                    - tag
                    - createdAt
                    - updatedAt
                  additionalProperties: false
        '400':
          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.

````