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

# 62 - Print Bill

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

Through this endpoint, operators and account holders have permission to print payment slips.

<Warning>It is important to note that the payment slip interface must be developed on the partner's front end.</Warning>


## OpenAPI

````yaml get /api/ImpressaoBoleto
openapi: 3.0.1
info:
  title: BMPSPBReports
  description: '<p><strong>Build Number: </strong>#0.0</p>'
  version: v1
servers:
  - url: https://api.ext.reports.dbs.moneyp.dev.br/
    description: Localhost
security:
  - Bearer: []
paths:
  /api/ImpressaoBoleto:
    get:
      tags:
        - ImpressaoBoleto
      description: "<p>Scopes:</p>\r\n<b>api.ext api.boleto.imprimir</b>"
      parameters:
        - name: codigoRegistroBoleto
          in: query
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Success
components:
  securitySchemes:
    Bearer:
      type: apiKey
      description: Copie 'Bearer ' + token
      name: Authorization
      in: header

````