Disbursement Account Object
The disbursement_account object represents the bank account used for resource disbursement in credit operations.
Structure
| Field | Type | Required | Description |
|---|---|---|---|
account_branch | string | Yes | Bank branch (without check digit). |
account_digit | string | Yes | Account check digit. |
account_number | string | Yes | Account number (without digit). |
document_number | string | Yes | CPF/CNPJ of the account holder. |
financial_institution_code | string | Yes | ISPB or COMPE code of the financial institution. |
name | string | Yes | Account holder's name. |
account_type | string | Yes | Account type. Values: checking_account, savings_account, payment_account. |
Example
{
"account_branch": "0001",
"account_digit": "2",
"account_number": "12345",
"document_number": "12345678901",
"financial_institution_code": "329",
"name": "João da Silva",
"account_type": "checking_account"
}