Skip to main content
Criar chave PIX por MFA
curl --request POST \
  --url https://api.ext.pix.dbs.moneyp.com.br/api/v2/Chave \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'IdempotencyKey: <idempotencykey>' \
  --header 'IgnoraHandshake: <ignorahandshake>' \
  --data '{
  "contaDto": {
    "agencia": "<string>",
    "agenciaDigito": "<string>",
    "conta": "<string>",
    "contaDigito": "<string>",
    "contaPgto": "<string>",
    "tipoConta": 1,
    "modeloConta": 1
  },
  "tipoChave": 0,
  "chave": "<string>",
  "codigoAutenticacao": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "codigoMfa": "<string>"
}'
{
  "sucesso": true,
  "mensagem": "<string>"
}
Through this endpoint, the partner can register a new Pix key, expanding their payment options. Key options include: CPF/CNPJ, email, cell phone number, or a random key.
To use this endpoint, you must perform double verification through MFA to create a key that uses “email” or “phone”

Authorizations

Authorization
string
header
required

Copie 'Bearer ' + token

Headers

IdempotencyKey
string
required
IgnoraHandshake
boolean
default:true
required

(somente em homologação)

Body

contaDto
object

Objeto detalhado da conta bancária.*

tipoChave
enum<integer>

Tipo da chave.*

Valores: 0 - CPF 1 - CNPJ 2 - TELEFONE 3 - EMAIL 4 - EVP

Available options:
0,
1,
2,
3,
4
chave
string | null

Chave pix a ser criada.*

codigoAutenticacao
string<uuid>

Identificador único (UUID) para validar a autenticidade da solicitação.*

codigoMfa
string | null

Código recebido para autenticaçâo multifator (MFA).*

Response

200 - application/json

Success

sucesso
boolean
mensagem
string | null
I