> ## Documentation Index
> Fetch the complete documentation index at: https://bmpdocs.moneyp.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# 56 - Check Changes Made

> <p>Scopes:</p>
<b>api.ext api.boleto.consultarAlteracao</b>

Using this endpoint, the partner can search and view changes to a specific payment slip. Changes made to payment titles cannot be viewed.


## OpenAPI

````yaml get /api/Boleto/ConsultarAlteracoes
openapi: 3.0.1
info:
  title: BMPSPBExt
  description: '<p><strong>Build Number: </strong>#0.0</p>'
  version: v1
servers:
  - url: https://api.ext.dbs.moneyp.dev.br/
    description: Localhost
security:
  - Bearer: []
paths:
  /api/Boleto/ConsultarAlteracoes:
    get:
      tags:
        - Boleto
      summary: Consulta as alterações realizadas em um boleto bancário específico.
      description: "<p>Scopes:</p>\r\n<b>api.ext api.boleto.consultarAlteracao</b>"
      parameters:
        - name: codigoRegistroBoleto
          in: query
          description: Código UUID do registro do boleto.
          schema:
            type: string
            format: uuid
        - name: codigoBarras
          in: query
          description: Código de barras do boleto.
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/BMPSPB.Domain.Messaging.API.Externa.DDA.ConsultaAlteracaoBoletoResponse
        '400':
          description: Erro de negócio
          content:
            application/json:
              schema:
                type: object
                properties:
                  sucesso:
                    type: boolean
                  mensagem:
                    type: string
        '500':
          description: Erro interno do servidor
          content:
            application/json:
              schema:
                type: object
                properties:
                  sucesso:
                    type: boolean
                  mensagem:
                    type: string
components:
  schemas:
    BMPSPB.Domain.Messaging.API.Externa.DDA.ConsultaAlteracaoBoletoResponse:
      type: object
      properties:
        sucesso:
          type: boolean
        mensagem:
          type: string
          nullable: true
        codigoAlteracaoBoleto:
          type: string
          format: uuid
        alteracoes:
          type: array
          items:
            $ref: >-
              #/components/schemas/BMPSPB.Domain.Messaging.API.Shared.DDA.Alteracao.AlteracaoBoletoDto
          nullable: true
      additionalProperties: false
    BMPSPB.Domain.Messaging.API.Shared.DDA.Alteracao.AlteracaoBoletoDto:
      type: object
      properties:
        codigo:
          type: string
          format: uuid
        codigoConta:
          type: string
          format: uuid
        codigoCedenteCarteira:
          type: string
          format: uuid
        origemRegistro:
          type: integer
          format: int32
        codMsg:
          type: string
          nullable: true
        dtInclusao:
          type: string
          format: date-time
          nullable: true
        codigoAcesso:
          type: string
          format: uuid
          nullable: true
        codigoOperador:
          type: string
          format: uuid
          nullable: true
        numCtrlPart:
          type: string
          nullable: true
        ispbPartDestinatarioPrincipal:
          type: string
          nullable: true
        ispbPartDestinatarioAdmtd:
          type: string
          nullable: true
        numIdentcTit:
          type: string
          nullable: true
        numRefAtlCadTit:
          type: string
          nullable: true
        indrManutBenfcrioOr:
          type: string
          nullable: true
        nomFantsBenfcrioOr:
          type: string
          nullable: true
        logradBenfcrioOr:
          type: string
          nullable: true
        cidBenfcrioOr:
          type: string
          nullable: true
        ufBenfcrioOr:
          type: string
          nullable: true
        cepBenfcrioOr:
          type: string
          nullable: true
        indrManutBenfcrioFinl:
          type: string
          nullable: true
        tpPessoaBenfcrioFinl:
          type: string
          nullable: true
        cnpJ_CPFBenfcrioFinl:
          type: string
          nullable: true
        nom_RzSocBenfcrioFinl:
          type: string
          nullable: true
        nomFantsBenfcrioFinl:
          type: string
          nullable: true
        indrManutPagdrTit:
          type: string
          nullable: true
        nom_RzSocPagdr:
          type: string
          nullable: true
        nomFantsPagdr:
          type: string
          nullable: true
        logradPagdr:
          type: string
          nullable: true
        cidPagdr:
          type: string
          nullable: true
        ufPagdr:
          type: string
          nullable: true
        cepPagdr:
          type: string
          nullable: true
        indrManutSacdrAvalst:
          type: string
          nullable: true
        tpIdentcSacdrAvalst:
          type: string
          nullable: true
        identcSacdrAvalst:
          type: string
          nullable: true
        nom_RzSocSacdrAvalst:
          type: string
          nullable: true
        indrManutDocTit:
          type: string
          nullable: true
        codCartTit:
          type: string
          nullable: true
        codEspTit:
          type: string
          nullable: true
        numDocTit:
          type: string
          nullable: true
        tpPgtoTit:
          type: string
          nullable: true
        numParcl:
          type: integer
          format: int32
          nullable: true
        qtdTotParcl:
          type: integer
          format: int32
          nullable: true
        indrTitNegcd:
          type: string
          nullable: true
        indrManutInstcPgtoTit:
          type: string
          nullable: true
        dtVencTit:
          type: string
          format: date-time
          nullable: true
        vlrTit:
          type: number
          format: double
          nullable: true
        qtdDiaPrott:
          type: integer
          format: int32
          nullable: true
        dtLimPgtoTit:
          type: string
          format: date-time
          nullable: true
        indrBloqPgto:
          type: string
          nullable: true
        vlrAbattTit:
          type: number
          format: double
          nullable: true
        qtdPgtoParcl:
          type: integer
          format: int32
          nullable: true
        tpModlCalc:
          type: string
          nullable: true
        indrManutInstcVlrRecbt:
          type: string
          nullable: true
        tpAutcRecbtVlrDivgte:
          type: string
          nullable: true
        tpVlr_PercMinTit:
          type: string
          nullable: true
        vlr_PercMinTit:
          type: number
          format: double
          nullable: true
        tpVlr_PercMaxTit:
          type: string
          nullable: true
        vlr_PercMaxTit:
          type: number
          format: double
          nullable: true
        indrManutJurosTit:
          type: string
          nullable: true
        indrManutMultaTit:
          type: string
          nullable: true
        indrManutDesctTit:
          type: string
          nullable: true
        indrManutHistNotaFis:
          type: string
          nullable: true
        indrManutHistTxtInf:
          type: string
          nullable: true
        txtInfBenfcrio:
          type: string
          nullable: true
        dtMovto:
          type: string
          format: date-time
          nullable: true
        r1_NumIdentcTit:
          type: string
          nullable: true
        r1_NumRefAtlCadTit:
          type: string
          nullable: true
        r1_NumSeqAtlzCadTit:
          type: string
          nullable: true
        r1_NumCtrlDDA:
          type: string
          nullable: true
        r1_DtHrDDA:
          type: string
          format: date-time
          nullable: true
        r1_DtMovto:
          type: string
          format: date-time
          nullable: true
        codOperacaoCli:
          type: string
          nullable: true
        dtSituacao:
          type: string
          format: date-time
          nullable: true
        msgSituacao:
          type: string
          nullable: true
        situacao:
          allOf:
            - $ref: '#/components/schemas/BMPSPB.Infra.Enums.SituacaoTransacao'
          nullable: true
        numControle:
          type: integer
          format: int64
          nullable: true
        alteracaoBoletoDesctTit:
          type: array
          items:
            $ref: >-
              #/components/schemas/BMPSPB.Domain.Entities.Dda.AlteracaoBoletoDesctTit
          nullable: true
        alteracaoBoletoJurosTit:
          allOf:
            - $ref: >-
                #/components/schemas/BMPSPB.Domain.Entities.Dda.AlteracaoBoletoJurosTit
          nullable: true
        alteracaoBoletoMultaTit:
          allOf:
            - $ref: >-
                #/components/schemas/BMPSPB.Domain.Entities.Dda.AlteracaoBoletoMultaTit
          nullable: true
      additionalProperties: false
    BMPSPB.Infra.Enums.SituacaoTransacao:
      enum:
        - 0
        - 1
        - 2
        - 3
        - 4
        - 5
        - 6
        - 7
        - 8
        - 50
        - 60
        - 97
        - 98
        - 99
      type: integer
      description: ''
      format: int32
    BMPSPB.Domain.Entities.Dda.AlteracaoBoletoDesctTit:
      type: object
      properties:
        id:
          type: integer
          format: int64
        isValid:
          type: boolean
          readOnly: true
        codigo:
          type: string
          format: uuid
        codigoAlteracaoBoleto:
          type: string
          format: uuid
        dtDesctTit:
          type: string
          format: date-time
          nullable: true
        codDesctTit:
          type: string
          nullable: true
        vlr_PercDesctTit:
          type: number
          format: double
          nullable: true
      additionalProperties: false
    BMPSPB.Domain.Entities.Dda.AlteracaoBoletoJurosTit:
      type: object
      properties:
        id:
          type: integer
          format: int64
        isValid:
          type: boolean
          readOnly: true
        codigo:
          type: string
          format: uuid
        codigoAlteracaoBoleto:
          type: string
          format: uuid
        dtJurosTit:
          type: string
          format: date-time
          nullable: true
        codJurosTit:
          type: string
          nullable: true
        vlr_PercJurosTit:
          type: number
          format: double
          nullable: true
      additionalProperties: false
    BMPSPB.Domain.Entities.Dda.AlteracaoBoletoMultaTit:
      type: object
      properties:
        id:
          type: integer
          format: int64
        isValid:
          type: boolean
          readOnly: true
        codigo:
          type: string
          format: uuid
        codigoAlteracaoBoleto:
          type: string
          format: uuid
        dtMultaTit:
          type: string
          format: date-time
          nullable: true
        codMultaTit:
          type: string
          nullable: true
        vlr_PercMultaTit:
          type: number
          format: double
          nullable: true
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: Copie 'Bearer ' + token
      name: Authorization
      in: header

````