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

# 11 - Create Static QR Code

> <p>Scopes:</p>
<b>api.pix api.qrcode.criarestatico</b>

Through this endpoint, the partner can generate a static QR code linked to a Pix key, which will not be changed or have an expiration date.


## OpenAPI

````yaml post /api/QRCode/CriarEstatico
openapi: 3.0.1
info:
  title: Api Externa BMP SPI
  description: '<p><strong>Build Number: </strong>#0.0</p>'
  version: v1
servers:
  - url: https://api.ext.pix.dbs.moneyp.com.br/
    description: Localhost
security:
  - Bearer: []
paths:
  /api/QRCode/CriarEstatico:
    post:
      tags:
        - QRCode
      summary: Cria um QR Code estático para Pagamento PIX.
      description: "<p>Scopes:</p>\r\n<b>api.pix api.qrcode.criarestatico</b>"
      parameters:
        - name: IdempotencyKey
          in: header
          required: true
          schema:
            type: string
        - name: IgnoraHandshake
          in: header
          description: (somente em homologação)
          required: true
          schema:
            type: boolean
            default: true
      requestBody:
        content:
          application/json:
            schema:
              allOf:
                - $ref: >-
                    #/components/schemas/BMPSPB.Domain.Messaging.API.Pix.QRCode.CriarEstatico.CriarEstaticoRequest
          text/json:
            schema:
              allOf:
                - $ref: >-
                    #/components/schemas/BMPSPB.Domain.Messaging.API.Pix.QRCode.CriarEstatico.CriarEstaticoRequest
          application/*+json:
            schema:
              allOf:
                - $ref: >-
                    #/components/schemas/BMPSPB.Domain.Messaging.API.Pix.QRCode.CriarEstatico.CriarEstaticoRequest
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/BMPSPB.Domain.Messaging.API.Pix.QRCode.CriarEstatico.CriarEstaticoResponse
        '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.Pix.QRCode.CriarEstatico.CriarEstaticoRequest:
      type: object
      properties:
        chave:
          type: string
          description: Chave Pix associada ao QR Code.*
          nullable: true
        tipoChave:
          allOf:
            - $ref: '#/components/schemas/BMPSPB.Infra.Enums.TipoChavePix'
          description: |-
            Tipo da chave.

             Valores:
            0 - CPF
            1 - CNPJ
            2 - TELEFONE
            3 - EMAIL
            4 - EVP
          nullable: true
        valor:
          type: number
          description: Valor do pagamento associado ao QR Code.
          format: double
          nullable: true
        informacoesAdicionais:
          type: string
          description: >-
            Detalhes adicionais opcionais associados ao QR Code. Útil para
            incluir descrições ou observações sobre o pagamento.


            Observação:

            - Apenas letras, números e espaços são permitidos no preenchimento
            deste campo.
          nullable: true
        idConciliacaoRecebedor:
          type: string
          description: >-
            Identificação da transação (TXID).


            Observação:

            - Apenas letras, números e espaços são permitidos no preenchimento
            deste campo.
          nullable: true
      additionalProperties: false
    BMPSPB.Domain.Messaging.API.Pix.QRCode.CriarEstatico.CriarEstaticoResponse:
      type: object
      properties:
        sucesso:
          type: boolean
        mensagem:
          type: string
          nullable: true
        emv:
          type: string
          nullable: true
        imagem:
          type: string
          nullable: true
      additionalProperties: false
    BMPSPB.Infra.Enums.TipoChavePix:
      enum:
        - 0
        - 1
        - 2
        - 3
        - 4
      type: integer
      description: ''
      format: int32
  securitySchemes:
    Bearer:
      type: apiKey
      description: Copie 'Bearer ' + token
      name: Authorization
      in: header

````