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

# Retrieve recurrence request (Pix Automático)

> Retrieves a request by its idSolicRec. Pix API GET /solicrec/{idSolicRec}. Projects the stored fields verbatim (D-4). The atualizacao[] (status history) and recPayload fields are not included in this response. An unknown idSolicRec returns 404 (canonical Problem envelope).



## OpenAPI

````yaml en/openapi/v3-current/spi-brcode.yaml get /api/v1/brcode/solicrec/{idSolicRec}
openapi: 3.1.0
info:
  contact:
    email: contact@lerian.studio
    name: Lerian Studio
    url: https://lerian.studio
  description: BR Code service for QR code generation and decoding (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: EMV BR Code payload generation, decoding, validation, info, and lookup.
    name: BRCode
  - description: >-
      Pix charges (Cob/CobV/LoteCobV): create, retrieve by TxID, list, cancel,
      reconcile, and resolve public payloads.
    name: Charges
  - description: >-
      Flow (mandatory order): create cob/cobv → generate QR/payload. A dynamic
      BR Code payload references a charge, so the cob/cobv charge MUST be
      created first; the payload links to it by txid/locator.
    name: charge
paths:
  /api/v1/brcode/solicrec/{idSolicRec}:
    get:
      tags:
        - SolicRec
      summary: Retrieve recurrence request (Pix Automático)
      description: >-
        Retrieves a request by its idSolicRec. Pix API GET
        /solicrec/{idSolicRec}. Projects the stored fields verbatim (D-4). The
        atualizacao[] (status history) and recPayload fields are not included in
        this response. An unknown idSolicRec returns 404 (canonical Problem
        envelope).
      operationId: getSolicRec
      parameters:
        - description: Identificador da solicitação [a-zA-Z0-9]{29}.
          in: path
          name: idSolicRec
          required: true
          schema:
            description: Identificador da solicitação [a-zA-Z0-9]{29}.
            pattern: ^[a-zA-Z0-9]{29}$
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SolicRecCompleta'
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Error
      security:
        - BearerAuth: []
components:
  schemas:
    SolicRecCompleta:
      additionalProperties: false
      properties:
        calendario:
          $ref: '#/components/schemas/SolicRecCalendarioDTO'
        destinatario:
          $ref: '#/components/schemas/SolicRecDestinatarioDTO'
        idRec:
          pattern: ^[a-zA-Z0-9]{29}$
          type: string
        idSolicRec:
          description: Identificador da solicitação.
          pattern: ^[a-zA-Z0-9]{29}$
          type: string
        status:
          enum:
            - CRIADA
            - ENVIADA
            - RECEBIDA
            - REJEITADA
            - ACEITA
            - EXPIRADA
            - CANCELADA
          type: string
      required:
        - idSolicRec
        - idRec
        - calendario
        - destinatario
        - status
      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
    SolicRecCalendarioDTO:
      additionalProperties: false
      properties:
        dataExpiracaoSolicitacao:
          description: Data de expiração da solicitação enviada ao pagador (RFC 3339).
          examples:
            - '2023-12-20T12:17:11Z'
          format: date-time
          pattern: ^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?(Z|[+-]\d{2}:\d{2})$
          type: string
      required:
        - dataExpiracaoSolicitacao
      type: object
    SolicRecDestinatarioDTO:
      additionalProperties: false
      properties:
        agencia:
          description: Agência do destinatário.
          examples:
            - '2569'
          maxLength: 4
          type: string
        cnpj:
          description: CNPJ do destinatário (PJ). Mutuamente exclusivo com cpf.
          pattern: ^[0-9A-Z]{14}$
          type: string
        conta:
          description: Conta do destinatário.
          examples:
            - '550689'
          maxLength: 20
          type: string
        cpf:
          description: CPF do destinatário (PF). Mutuamente exclusivo com cnpj.
          examples:
            - '15231470190'
          pattern: ^\d{11}$
          type: string
        ispbParticipante:
          description: ISPB do participante destinatário.
          examples:
            - '91193552'
          pattern: ^[0-9A-Z]{8}$
          type: string
      required:
        - conta
        - ispbParticipante
      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

````