curl --request POST \
  --url https://api.ext.dbs.moneyp.dev.br/api/Cedente \
  --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
  },
  "codCartTit": 1
}'
{
  "sucesso": true,
  "mensagem": "<string>",
  "numero": 123
}

Through this endpoint, partners can register a Payer number, as this process is necessary to initiate the registration of bankslips.

To use this endpoint, it is required to have an active account with BMP-274. The account creation can be done through the /api/v2/Conta endpoint. After creating the account and the payer, it is necessary to link the payer to a portfolio using the /api/Cedente/AdicionarCarteira endpoint.

Authorizations

Authorization
string
header
required

Copie 'Bearer ' + token

Headers

IdempotencyKey
string
required

Chave única para garantir que uma operação seja executada apenas uma vez.

IgnoraHandshake
boolean
default:true
required

(somente em homologação)

Body

Response

200 - application/json

Success

The response is of type object.