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

# Adicionar andamento manual

> Adiciona um andamento escrito manualmente ao processo. O andamento entra no topo da lista com `tipo: ANDAMENTO` e `origin: manual`, e nasce privado — só aparece para o cliente final no Jurichat se `sharedWithJurichat` for `true`.



## OpenAPI

````yaml https://api.juridiq.com.br/api-docs/client/openapi.json post /lawSuit/movements
openapi: 3.1.0
info:
  title: Juridiq API — Documentação para Integradores
  description: ''
  version: 1.0.0
servers:
  - url: https://api.juridiq.com.br
    description: Production server
security:
  - apiKeyAuth: []
tags: []
paths:
  /lawSuit/movements:
    post:
      tags:
        - Law Suits
      summary: Adicionar andamento manual
      description: >-
        Adiciona um andamento escrito manualmente ao processo. O andamento entra
        no topo da lista com `tipo: ANDAMENTO` e `origin: manual`, e nasce
        privado — só aparece para o cliente final no Jurichat se
        `sharedWithJurichat` for `true`.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                lawSuitId:
                  type: string
                  format: uuid
                  description: ID do processo que recebe o andamento
                content:
                  type: string
                  description: Texto do andamento
                tags:
                  type: array
                  items:
                    type: string
                  description: IDs das tags vinculadas ao andamento
                sharedWithJurichat:
                  type: boolean
                  description: >-
                    Compartilha o andamento com o cliente final no Jurichat
                    (padrão: false)
              required:
                - lawSuitId
                - content
              additionalProperties: false
        required: true
      responses:
        '201':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: ID do registro de movimentações do processo
                  lawSuitId:
                    type: string
                    description: ID do processo
                  movements:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          anyOf:
                            - type: number
                            - type: string
                          description: ID da movimentação
                        conteudo:
                          type: string
                          description: Texto da movimentação
                        data:
                          type: string
                          description: Data da movimentação
                        tags:
                          type: array
                          items:
                            type: string
                          description: IDs das tags
                        tagsDetails:
                          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
                            required:
                              - id
                            additionalProperties: false
                          description: Detalhes das tags
                      additionalProperties: true
                    description: >-
                      Todas as movimentações do processo, com o novo andamento
                      no topo
                  lastUpdate:
                    type: string
                    format: date-time
                    nullable: true
                    description: Data da movimentação mais recente
                  createdAt:
                    type: string
                    format: date-time
                    description: Data de criação do registro
                  updatedAt:
                    type: string
                    format: date-time
                    description: Data da última atualização do registro
                required:
                  - id
                  - lawSuitId
                  - movements
                additionalProperties: true
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  translateMessage:
                    type: string
                required:
                  - message
                  - statusCode
                  - translateMessage
                additionalProperties: false
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  translateMessage:
                    type: string
                required:
                  - message
                  - statusCode
                  - translateMessage
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  translateMessage:
                    type: string
                required:
                  - message
                  - statusCode
                  - translateMessage
                additionalProperties: false
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-juridiq-api-key
      description: >-
        Chave de API do escritório (criada no painel). Envie o valor no header
        x-juridiq-api-key.

````