Skip to main content
cURL
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, the partner can register a Payee number, as this process is necessary to initiate the bill registration process. To use this endpoint, you must have an active account with BMP-274. Account creation can be done at the /api/v2/Account endpoint. After creating an account and payee, you must link them to a wallet at the /api/Payee/AddWallet endpoint.

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 para a qual deseja-se cadastrar o cedente.*

codCartTit
enum<integer>

Tipo da Modalidade.*

Valores: 1 - Cobrança Simples 2 - Cobrança Vinculada 3 - Cobrança Caucionada 4 - Cobrança Descontada 5 - Cobrança Vendor

Available options:
1,
2,
3,
4,
5

Response

200 - application/json

Success

sucesso
boolean
mensagem
string | null
numero
integer
I