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

# Resolver roteamento de pagamentos

> Resolve o caminho de roteamento de um pagamento com base no ISPB do remetente e no valor.



## OpenAPI

````yaml pt/openapi/v3-current/spi-core.yaml post /api/v1/core/routing/resolve
openapi: 3.1.0
info:
  contact:
    email: contact@lerian.studio
    name: Lerian Studio
    url: https://lerian.studio
  description: >-
    Serviço central do Lerian SPI: casos de disputa MED (Mecanismo Especial de
    Devolução), ciclo de vida de participantes PIX por ISPB, resolução de
    roteamento de pagamentos e orquestração de operações Core entre contextos
    sobre o Sistema de Pagamentos Instantâneos brasileiro (SPI/Pix).
  license:
    name: Lerian Studio General License
  title: Lerian SPI — Core API
  version: 1.0.0
servers:
  - url: https://spi.sandbox.lerian.net
security: []
tags:
  - description: >-
      Casos de disputa MED (Mecanismo Especial de Devolução): abrir, listar,
      consultar, analisar, resolver, fechar, cancelar e anexar evidências.
    name: MED
  - description: >-
      Ciclo de vida de participantes PIX: registrar, listar, consultar,
      suspender, ativar e descredenciar por ISPB.
    name: Participants
  - description: Resolução de roteamento de pagamentos entre participantes.
    name: Routing
  - description: Orquestração de operações Core entre os contextos delimitados do rail.
    name: Operations
paths:
  /api/v1/core/routing/resolve:
    post:
      tags:
        - Routing
      summary: Resolver roteamento de pagamentos
      description: >-
        Resolve o caminho de roteamento de um pagamento com base no ISPB do
        remetente e no valor.
      operationId: resolveRouting
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ResolveRoutingRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RoutingDecisionResponse'
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Error
      security:
        - BearerAuth: []
components:
  schemas:
    ResolveRoutingRequest:
      additionalProperties: false
      properties:
        amount:
          description: >-
            Transaction amount in centavos (BRL minor units) to validate against
            quota; must be greater than zero.
          examples:
            - 15000
          format: int64
          type: integer
        senderISPB:
          description: >-
            ISPB of the sending participant whose routing is being resolved,
            exactly 8 numeric digits.
          examples:
            - '12345678'
          type: string
      required:
        - senderISPB
        - amount
      type: object
    RoutingDecisionResponse:
      additionalProperties: false
      properties:
        indirectISPB:
          description: >-
            ISPB of the indirect participant being routed through the sponsor (8
            numeric digits); empty for direct participants.
          examples:
            - '12345678'
          type: string
        isDirect:
          description: >-
            True when the sender connects directly to BACEN; false when routed
            through a sponsor.
          examples:
            - false
          type: boolean
        quotaValidatedAmount:
          description: >-
            Amount in centavos (BRL minor units) validated against the indirect
            participant's quota.
          examples:
            - 15000
          format: int64
          type: integer
        sponsorISPB:
          description: >-
            ISPB of the sponsor participant routing the payment (8 numeric
            digits); empty for direct participants.
          examples:
            - '87654321'
          type: string
      required:
        - quotaValidatedAmount
        - isDirect
      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

````