Initial Guide
Developer's Guide
- Integration Methods
APIs Reference
- PIX
- Transfers
- CNAB
- Account
- GET35 - Check Receipt
- GET36 - Check Balance
- GET37 - Check Statement
- GET38 - Check Fees
- GET39 - Check Account by Document
- DEL40 - Cancel Account Closure Request
- GET41 - Check Account Closure
- POST42 - Account Closure Request
- GET43 - Account Transactions
- POST44 - Create Account
- POST45 - Update Account Holder Registration
- PUT46 - Update Beneficiary
- POST47 - Beneficiary Registration
- GET
- Bank Slip
- Protest
Account
45 - Update Account Holder Registration
Scopes:
api.ext api.correntista.atualizarcurl --request POST \
--url https://api.ext.dbs.moneyp.dev.br/api/Correntista/Atualizar \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'IdempotencyKey: <idempotencykey>' \
--header 'IgnoraHandshake: <ignorahandshake>' \
--data '{
"conta": {
"agencia": "<string>",
"agenciaDigito": "<string>",
"conta": "<string>",
"contaDigito": "<string>",
"contaPgto": "<string>",
"tipoConta": 1,
"modeloConta": 1
},
"dadosCorrentista": {
"documentoFederal": "<string>",
"nome": "<string>",
"tipoPessoa": 123,
"situacao": 123
},
"dadosContato": {
"email": "<string>",
"telefoneFixo1": "<string>",
"telefoneFixo2": "<string>",
"telefoneCelular1": "<string>",
"telefoneCelular2": "<string>",
"telefoneFax": "<string>",
"paginaWeb": "<string>"
},
"dadosEndereco": {
"cep": "<string>",
"logradouro": "<string>",
"nroLogradouro": "<string>",
"bairro": "<string>",
"complemento": "<string>",
"cidade": "<string>",
"uf": "<string>",
"tipoEndereco": 1,
"tipoResidencia": 123,
"enderecoDesde": "2023-11-07T05:31:56Z",
"enderecoPrincipal": true,
"enderecoCorrespondencia": true,
"verificadoInLoco": true
}
}'
{
"sucesso": true,
"mensagem": "<string>"
}
Through this endpoint, partners can execute updates to the registration of account holders under the integrator’s domain.
Authorizations
Copie 'Bearer ' + token
Headers
(somente em homologação)
Body
Response
200 - application/json
Success
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.ext.dbs.moneyp.dev.br/api/Correntista/Atualizar \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'IdempotencyKey: <idempotencykey>' \
--header 'IgnoraHandshake: <ignorahandshake>' \
--data '{
"conta": {
"agencia": "<string>",
"agenciaDigito": "<string>",
"conta": "<string>",
"contaDigito": "<string>",
"contaPgto": "<string>",
"tipoConta": 1,
"modeloConta": 1
},
"dadosCorrentista": {
"documentoFederal": "<string>",
"nome": "<string>",
"tipoPessoa": 123,
"situacao": 123
},
"dadosContato": {
"email": "<string>",
"telefoneFixo1": "<string>",
"telefoneFixo2": "<string>",
"telefoneCelular1": "<string>",
"telefoneCelular2": "<string>",
"telefoneFax": "<string>",
"paginaWeb": "<string>"
},
"dadosEndereco": {
"cep": "<string>",
"logradouro": "<string>",
"nroLogradouro": "<string>",
"bairro": "<string>",
"complemento": "<string>",
"cidade": "<string>",
"uf": "<string>",
"tipoEndereco": 1,
"tipoResidencia": 123,
"enderecoDesde": "2023-11-07T05:31:56Z",
"enderecoPrincipal": true,
"enderecoCorrespondencia": true,
"verificadoInLoco": true
}
}'
{
"sucesso": true,
"mensagem": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.