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

# 3 - Delete Pix Key

> <p>Scopes:</p>
<b>api.pix api.chave.excluir</b>

Through this endpoint, the partner can delete registered Pix keys. Both customers and partners can remove a previously registered key from their account and securely manage their keys in transactions.


## OpenAPI

````yaml delete /api/Chave/Excluir
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/Chave/Excluir:
    delete:
      tags:
        - Chave
      summary: Excluir chave PIX
      description: "<p>Scopes:</p>\r\n<b>api.pix api.chave.excluir</b>"
      parameters:
        - name: Chave
          in: query
          description: Chave PIX cadastrada à ser excluida.*
          schema:
            type: string
            description: Chave PIX cadastrada à ser excluida.*
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/BMPSPB.Domain.Messaging.API.Pix.Chave.Excluir.ExcluirResponse
        '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.Chave.Excluir.ExcluirResponse:
      type: object
      properties:
        sucesso:
          type: boolean
        mensagem:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: Copie 'Bearer ' + token
      name: Authorization
      in: header

````