Skip to main content
Atualiza os Dados do Correntista.
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": 1
  },
  "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": 1,
    "enderecoDesde": "2023-11-07T05:31:56Z",
    "enderecoPrincipal": true,
    "enderecoCorrespondencia": true,
    "verificadoInLoco": true
  }
}'
{
  "sucesso": true,
  "mensagem": "<string>"
}
Through this endpoint, the partner can execute the update of the account holders’ registration under the integrator’s domain.

Authorizations

Authorization
string
header
required

Copie 'Bearer ' + token

Headers

IdempotencyKey
string
required
IgnoraHandshake
boolean
default:true
required

(somente em homologação)

Body

conta
object

Objeto detalhado da conta bancária.*

dadosCorrentista
object

Objeto detalhado do correntista vinculado à conta.*

dadosContato
object

Objeto detalhado do contato do correntista vinculado à conta.*

dadosEndereco
object

Objeto detalhado do endereço do correntista vinculado à conta.*

Response

200 - application/json

Success

sucesso
boolean
mensagem
string | null
I