Initial Guide
Developer's Guide
- Integration Methods
APIs Reference
- PIX
- POST1 - Create Pix Key
- GET2 - Consult Pix Key
- DEL3 - Delete Pix Key
- GET4 - List Pix Keys
- GET5 - Check Portability
- POST6 - Accept Portability
- POST7 - Reject Portability
- POST8 - Beneficiary Registration
- POST9 - Request MFA
- POST10 - Create Static QR Code
- POST11 - Create Dynamic QR Code for Immediate Payment
- POST12 - QR Code - Charge
- GET13 - Read QR Code
- GET14 - Consult Hybrid Boleto Qr Code
- POST15 - Transfer Funds
- POST16 - Return Funds
- GET17 - Transfer Status
- GET18 - Check Refund Status
- POST19 - Request MFA for Claim
- POST20 - Request Claim
- GET21 - List Claims
- GET22 - Check Key Claim
- POST23 - Cancel Claim
- POST
- Transfers
- CNAB
- Account
- Bank Slip
- Protest
PIX
5 - Check Portability
Scopes:
api.pix api.doacao.consultardoacaocurl --request GET \
--url https://api.ext.pix.dbs.moneyp.com.br/api/Doacao/Consultar/{codigo} \
--header 'Authorization: <api-key>'
{
"sucesso": true,
"mensagem": "<string>",
"codigo": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"codigoConta": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"codigoContaChavePix": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"codigoOperador": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"chave": "<string>",
"tipoChave": 0,
"tipoReivindicacao": 1,
"idReivindicacao": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"participanteSolicitante": "<string>",
"agenciaSolicitante": "<string>",
"contaSolicitante": "<string>",
"nomeSolicitante": "<string>",
"documentoSolicitante": "<string>",
"tipoPessoaSolicitante": 1,
"statusReivindicacao": 1,
"prazoResolucao": "2023-11-07T05:31:56Z",
"prazoConclusao": "2023-11-07T05:31:56Z",
"dtModificacao": "2023-11-07T05:31:56Z",
"motivoConfirmacao": 1,
"motivoCancelamento": 1,
"solicitanteCancelamento": 0,
"dtInclusao": "2023-11-07T05:31:56Z",
"situacao": 0,
"msgSituacao": "<string>"
}
Through this endpoint, partners can check the status of Pix key portability requests, allowing them to query the “status” of portability actions.
Authorizations
Copie 'Bearer ' + token
Path Parameters
Código UUID identificador da solicitação de portabilidade de chave Pix a ser consultada.
Response
200 - application/json
Success
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.ext.pix.dbs.moneyp.com.br/api/Doacao/Consultar/{codigo} \
--header 'Authorization: <api-key>'
{
"sucesso": true,
"mensagem": "<string>",
"codigo": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"codigoConta": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"codigoContaChavePix": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"codigoOperador": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"chave": "<string>",
"tipoChave": 0,
"tipoReivindicacao": 1,
"idReivindicacao": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"participanteSolicitante": "<string>",
"agenciaSolicitante": "<string>",
"contaSolicitante": "<string>",
"nomeSolicitante": "<string>",
"documentoSolicitante": "<string>",
"tipoPessoaSolicitante": 1,
"statusReivindicacao": 1,
"prazoResolucao": "2023-11-07T05:31:56Z",
"prazoConclusao": "2023-11-07T05:31:56Z",
"dtModificacao": "2023-11-07T05:31:56Z",
"motivoConfirmacao": 1,
"motivoCancelamento": 1,
"solicitanteCancelamento": 0,
"dtInclusao": "2023-11-07T05:31:56Z",
"situacao": 0,
"msgSituacao": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.