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

# Get institution config

> Returns the resolved institution's configuration as a safe metadata view. The credentials reference and any other secret material are omitted. The institution is derived from the validated request identity (or the auth-off default), never the body or path.



## OpenAPI

````yaml en/openapi/v3-current/sisbajud.yaml get /v1/institution/config
openapi: 3.0.3
info:
  title: Lerian SISBAJUD API
  description: >-
    API for Lerian SISBAJUD — the participant-side rail that integrates the
    institution with Banco Central do Brasil's SISBAJUD (Sistema de Busca de
    Ativos do Poder Judiciário) system for judicial asset blocking and
    unblocking. It covers judicial-order administration, remittance and return
    file management, reconciliation, SLA monitoring, LGPD data-subject requests,
    and per-institution configuration and connector credentials.
  version: v1.0.0
servers:
  - url: https://sisbajud.sandbox.lerian.net
security: []
tags:
  - name: Admin
    description: >-
      Administrative operations over judicial orders: listing and detail,
      failed-order reprocessing, remittance and return file access,
      reconciliation runs and status, SLA-risk monitoring, processing
      statistics, audit-trail verification, cross-organization subject
      summaries, and LGPD data-subject requests and justifications.
  - name: Institution
    description: >-
      Per-institution configuration and connector credentials: configuration
      upsert with tokenization-keyset provisioning, safe configuration read, and
      outbound connector credential registration and rotation.
paths:
  /v1/institution/config:
    get:
      tags:
        - Institution
      summary: Get institution config
      description: >-
        Returns the resolved institution's configuration as a safe metadata
        view. The credentials reference and any other secret material are
        omitted. The institution is derived from the validated request identity
        (or the auth-off default), never the body or path.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/query.InstitutionConfigResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.ProductErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.ProductErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.ProductErrorResponse'
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/http.ProductErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    query.InstitutionConfigResponse:
      properties:
        connectorMetadata:
          type: object
        connectorType:
          type: string
        createdAt:
          type: string
        enabled:
          type: boolean
        institutionId:
          type: string
        retryPolicyConfig:
          description: >-
            The connector's admission sets
            (blockableBalances/blockableAccountTypes) are no

            longer top-level fields; they ride inside connectorMetadata
            (preserved verbatim

            below), which the connector owns and interprets.
          type: object
        updatedAt:
          type: string
      type: object
    http.ProductErrorResponse:
      properties:
        code:
          type: string
        details:
          additionalProperties: {}
          type: object
        message:
          type: string
        title:
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      description: 'Bearer token authentication (format: "Bearer {token}")'
      in: header
      name: Authorization
      type: apiKey

````