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

# Migrar monitoramentos Solucionare para Juridiq DJEN

> Converte monitoramentos SOLUCIONARE de um escritório para JURIDIQ preservando publicationId e movimentos históricos.



## OpenAPI

````yaml https://api.juridiq.com.br/openapi.json post /admin-page/migrate-publications-to-juridiq
openapi: 3.1.0
info:
  title: Juridiq Server API (interno)
  description: Documentação técnica **interna** da API Juridiq Server
  version: 1.0.0
servers:
  - url: http://localhost:3001
    description: Development server
  - url: https://api.juridiq.com.br
    description: Production server
security:
  - bearerAuth: []
paths:
  /admin-page/migrate-publications-to-juridiq:
    post:
      tags:
        - Admin Page
      summary: Migrar monitoramentos Solucionare para Juridiq DJEN
      description: >-
        Converte monitoramentos SOLUCIONARE de um escritório para JURIDIQ
        preservando publicationId e movimentos históricos.
      operationId: migrateOfficePublicationsToJuridiq
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
                  format: email
                dryRun:
                  type: boolean
                  default: false
              required:
                - email
              additionalProperties: false
        required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: object
                    properties:
                      officeId:
                        type: string
                      dryRun:
                        type: boolean
                      totalSolucionare:
                        type: number
                      migrated:
                        type: array
                        items:
                          type: object
                          properties:
                            publicationId:
                              type: string
                            term:
                              type: string
                            djenMonitoringProfileId:
                              type: string
                            temporaryPublicationId:
                              type: string
                            movedMovements:
                              type: number
                          required:
                            - publicationId
                            - term
                            - djenMonitoringProfileId
                            - temporaryPublicationId
                            - movedMovements
                          additionalProperties: false
                      failed:
                        type: array
                        items:
                          type: object
                          properties:
                            publicationId:
                              type: string
                            term:
                              type: string
                              nullable: true
                            error:
                              type: string
                          required:
                            - publicationId
                            - term
                            - error
                          additionalProperties: false
                    required:
                      - officeId
                      - dryRun
                      - totalSolucionare
                      - migrated
                      - failed
                    additionalProperties: false
                required:
                  - success
                  - data
                additionalProperties: false
        '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
        '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
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Insira o token JWT no formato: Bearer {token}'

````