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

# Buscar perfil por ID

> Retorna um perfil específico pelo identificador



## OpenAPI

````yaml https://api.juridiq.com.br/openapi.json get /profile/{id}
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:
  /profile/{id}:
    get:
      tags:
        - Profiles
      summary: Buscar perfil por ID
      description: Retorna um perfil específico pelo identificador
      parameters:
        - schema:
            type: string
            format: uuid
          in: path
          name: id
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  name:
                    type: string
                  officeId:
                    type: string
                    format: uuid
                  permissions:
                    nullable: true
                  isPrivate:
                    type: boolean
                    nullable: true
                  createdAt:
                    anyOf:
                      - type: string
                        format: date-time
                      - type: string
                  updatedAt:
                    anyOf:
                      - type: string
                        format: date-time
                      - type: string
                required:
                  - id
                  - name
                  - officeId
                  - createdAt
                  - updatedAt
                additionalProperties: false
                nullable: 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
        '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:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Insira o token JWT no formato: Bearer {token}'

````