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

# Registrar perfil do recebedor

> Superfície de administração da instituição financeira (não é um endpoint do BACEN): registra ou atualiza (upsert) a identidade do recebedor para uma chave Pix. As respostas CobV exigem um recebedor com endereço postal (DadosRecebedor), que o DICT não pode fornecer; a instituição financeira o registra aqui. Idempotente por natureza.



## OpenAPI

````yaml pt/openapi/v3-current/spi-brcode.yaml put /api/v1/brcode/recebedores/{chave}
openapi: 3.1.0
info:
  contact:
    email: contact@lerian.studio
    name: Lerian Studio
    url: https://lerian.studio
  description: >-
    Serviço de BR Code para geração e decodificação de códigos QR (EMV
    QRCPS-MPM).
  license:
    name: Lerian Studio General License
  title: Lerian SPI — BR Code API
  version: 1.0.0
servers:
  - url: https://spi.sandbox.lerian.net
security: []
tags:
  - description: >-
      Geração, decodificação, validação, informações e consulta de payloads de
      BR Code EMV.
    name: BRCode
  - description: >-
      Cobranças Pix (Cob/CobV/LoteCobV): criar, consultar por TxID, listar,
      cancelar, conciliar e resolver payloads públicos.
    name: Charges
  - description: >-
      Fluxo (ordem obrigatória): criar cob/cobv → gerar QR/payload. Um payload
      dinâmico de BR Code faz referência a uma cobrança, portanto a cobrança
      cob/cobv DEVE ser criada primeiro; o payload é vinculado a ela por
      txid/locator.
    name: charge
paths:
  /api/v1/brcode/recebedores/{chave}:
    put:
      tags:
        - Charges
      summary: Registrar perfil do recebedor
      description: >-
        Superfície de administração da instituição financeira (não é um endpoint
        do BACEN): registra ou atualiza (upsert) a identidade do recebedor para
        uma chave Pix. As respostas CobV exigem um recebedor com endereço postal
        (DadosRecebedor), que o DICT não pode fornecer; a instituição financeira
        o registra aqui. Idempotente por natureza.
      operationId: upsertRecebedorProfile
      parameters:
        - description: Chave Pix (DICT) do recebedor.
          in: path
          name: chave
          required: true
          schema:
            description: Chave Pix (DICT) do recebedor.
            maxLength: 77
            type: string
        - description: Idempotency key, max 255 characters
          in: header
          name: Idempotency-Key
          schema:
            description: Idempotency key, max 255 characters
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RecebedorProfileRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecebedorDTO'
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Error
      security:
        - BearerAuth: []
components:
  schemas:
    RecebedorProfileRequest:
      additionalProperties: false
      properties:
        cep:
          description: CEP do recebedor (8 dígitos).
          examples:
            - '01310100'
          maxLength: 8
          type: string
        cidade:
          description: Cidade do recebedor.
          examples:
            - São Paulo
          maxLength: 200
          type: string
        cnpj:
          description: CNPJ do recebedor (PJ). Mutuamente exclusivo com cpf.
          examples:
            - 12ABC34501DE35
          type: string
        cpf:
          description: CPF do recebedor (PF). Mutuamente exclusivo com cnpj.
          examples:
            - '12345678901'
          type: string
        logradouro:
          description: Logradouro do recebedor.
          examples:
            - Av. Paulista, 1000
          maxLength: 200
          type: string
        nome:
          description: Nome/razão social do recebedor.
          examples:
            - Lerian Studio LTDA
          maxLength: 200
          type: string
        nomeFantasia:
          description: Nome fantasia do recebedor (PJ).
          examples:
            - Lerian
          maxLength: 200
          type: string
        uf:
          description: UF do recebedor (2 caracteres).
          examples:
            - SP
          maxLength: 2
          type: string
      required:
        - nome
        - logradouro
        - cidade
        - uf
        - cep
      type: object
    RecebedorDTO:
      additionalProperties: false
      properties:
        cep:
          description: CEP do recebedor.
          maxLength: 8
          type: string
        cidade:
          description: Cidade do recebedor.
          maxLength: 200
          type: string
        cnpj:
          description: CNPJ do recebedor (PJ).
          type: string
        cpf:
          description: CPF do recebedor (PF).
          type: string
        logradouro:
          description: Logradouro do recebedor.
          maxLength: 200
          type: string
        nome:
          description: Nome/razão social do recebedor.
          maxLength: 200
          type: string
        nomeFantasia:
          description: Nome fantasia do recebedor.
          maxLength: 200
          type: string
        uf:
          description: UF do recebedor.
          maxLength: 2
          type: string
      type: object
    Detail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Stable, machine-readable domain error code scoped to the emitting
            service (format: <SERVICE>-NNNN).
          examples:
            - ERR-0001
          type: string
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      description: JWT bearer token issued by the identity provider.
      scheme: bearer
      type: http

````