BNPL Issuance
Summary
This endpoint issues the debt and processes the contract signature via opt-in. Disbursement occurs automatically immediately after issuance. Pre-registration is not required; simply provide the borrower's details during the debt request.
Request
ENDPOINT
/signed_debtMETHOD
POSTRequest Body
{
"borrower": {
"name": "Dante Ferrarini",
"email": "",
"phone": {
"number": "185633631",
"area_code": "15",
"country_code": "086"
},
"is_pep": false,
"address": {
"city": "São Paulo",
"state": "SP",
"number": "",
"street": "Rua Gilberto Sabino",
"postal_code": "05425020",
"neighborhood": "Pinheiros",
"complement": ""
},
"role_type": "issuer",
"birth_date": "1993-09-10",
"person_type": "natural",
"attached_documents_list": [
{
"selfie": "250e7e95-57c8-40bd-a0cd-0be8eb172916"
}
],
"individual_document_number": "31057466093"
},
"financial": {
"interest_type": "pre_price_days",
"disbursement_date": "2026-04-07",
"fine_configuration": {
"monthly_rate": 0.01,
"interest_base": "calendar_days",
"contract_fine_rate": 0.02
},
"disbursed_amount": 1000,
"credit_operation_type": "ccb",
"interest_grace_period": 0,
"number_of_installments": 2,
"principal_grace_period": 0,
"monthly_interest_rate": 0.052
},
"simplified": true,
"additional_data": {
"contract": {
"contract_number": "DWF1761222116",
"signatures": [
{
"signer": {
"name": "Dante Ferrarini",
"email": "",
"phone": {
"number": "185633631",
"area_code": "15",
"country_code": "086"
},
"document_number": "31057466093"
},
"signature": {
"timestamp": "28-01-2026 06:36:35",
"ip_address": "192.168.1.1",
"signature_file": {
"file_url": "https://qitech.com.br/signature.pdf",
"file_type": "pdf"
}
}
}
]
}
},
"requester_identifier_key": "d1905ef5-19df-4183-bf0e-802b8229933c",
"purchaser_document_number": "32402502000135",
"disbursement_bank_accounts": [
{
"name": "company name",
"ispb_number": "32402502",
"account_digit": "5",
"branch_number": "0001",
"account_number": "7617846",
"document_number": "32246162000281",
"percentage_receivable": 100
}
]
}
Request Body Details
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| borrower* | object | Borrower Object - The debtor of the credit operation | Borrower Object |
| financial* | object | Contains all financial details and calculation parameters for the operation | Financial Object |
| simplified | boolean | If true, uses the simplified issuance flow | - |
| additional_data* | object | Additional contract data, including signatures | Additional Data Object |
| requester_identifier_key | string | Requester identifier key | UUID |
| purchaser_document_number* | string | Assignee's Tax ID – The buyer of the credit operation (FIDC/Receivables Investment Fund) | 14 |
| disbursement_bank_accounts* | array | Technical details of the bank account where the operation funds will be deposited | Disbursement Bank Account Object |
Borrower Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| name* | string | Full name of the borrower | 100 |
| string | Borrower's email address | 254 | |
| phone | object | Borrower's contact telephone details | Phone Object |
| is_pep* | boolean | Politically Exposed Person (PEP) indicator | 5 |
| address* | object | Borrower's residential address details | Address Object |
| role_type | string | The role of the person in the operation (e.g., "issuer") | 10 |
| birth_date* | date | Borrower's date of birth (Format: "YYYY-MM-DD") | 10 |
| person_type* | string | Person classification (natural or legal) | 7 |
| attached_documents_list | array | List of attached documents (e.g., selfie) | Attached Documents Object |
| individual_document_number* | string | Borrower's Tax ID (CPF) - numbers only | 11 |
Attached Documents Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| selfie | string | DOCUMENT_KEY of the selfie document uploaded via upload | UUID |
Address Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| city* | string | City name of the address | 100 |
| state* | string | State abbreviation (two uppercase characters) | 2 |
| number | string | Street number | 10 |
| street* | string | Street name | 100 |
| complement | string | Address complement (free text) | 100 |
| postal_code* | string | Postal code (CEP) - numbers only | 8 |
| neighborhood* | string | Neighborhood or district name | 100 |
Phone Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| number* | string | Subscriber's phone number | 9 |
| area_code* | string | Two-digit regional area code (e.g., "11") | 2 |
| country_code* | string | International dialing code (e.g., "055") | 3 |
Financial Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| interest_type* | string | Amortization method | 20 |
| disbursement_date* | string | Disbursement date | 10 |
| fine_configuration* | object | Fine and penalty configuration | Fine Configuration Object |
| disbursed_amount* | float | Amount to be disbursed | 15,2 |
| credit_operation_type* | string | Type of credit operation (e.g., "ccb") | 10 |
| interest_grace_period | integer | Interest grace period (in months) | 3 |
| number_of_installments* | integer | Number of installments | 3 |
| principal_grace_period | integer | Principal grace period (in months) | 3 |
| monthly_interest_rate* | float | Monthly interest rate | 10,6 |
Fine Configuration Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| monthly_rate* | float | Monthly penalty rate | 10,6 |
| interest_base* | string | Penalty calculation base (e.g., "calendar_days") | 20 |
| contract_fine_rate* | float | Contractual fine rate | 10,6 |
Disbursement Bank Account Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| name | string | Account holder's full name | 50 |
| ispb_number | string | Financial institution's ISPB code | 8 |
| account_digit* | string | Account check digit (use zero instead of letters) | 1 |
| branch_number* | string | Branch number (do not include the branch check digit!) | 4 |
| account_number* | string | Account number (do not include the account check digit!) | 10 |
| document_number | string | Account holder's Tax ID (CPF/CNPJ) | 14 |
| percentage_receivable* | float | Disbursement percentage for this account | 3 |
Additional Data Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| contract* | object | Contract data | Contract Object |
Contract Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| contract_number* | string | The unique identifier or reference number of the contract | 20 |
| signatures* | array | List of digital signature evidence objects (Opt-in) | Signature Object |
Signature Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| signer* | object | Signer identification data | Signer Object |
| signature* | object | Digital signature evidence data | Signature Details Object |
Signer Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| name* | string | Full name of the signer | 255 |
| document_number* | string | Signer's tax identification number (CPF) | 11 |
| string | Electronic mail address of the signer | 100 | |
| phone | object | Signer's contact telephone details | Phone Object |
Signature Details Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| ip_address* | string | The IP address used during the signature process | 45 |
| timestamp* | string | Date and time of the signature (ISO 8601: YYYY-MM-DDTHH:mm:ssZ) | 24 |
| signature_file* | object | Digital signature file | Signature File Object |
Signature File Object
| Field | Type | Description | Max. Char. |
|---|---|---|---|
| file_url* | string | Direct link to the signed contract document (PDF) | 2048 |
| file_type* | string | Format of the signature file (e.g., "pdf") | 4 |
Response
The response to this debt request will return the payment plan as well as a DEBT-KEY, which is the identifier of the debt in QI SCD.
STATUS
201Response Body
{
"webhook_type": "debt",
"key": "72760166-4ddf-41fb-8a8c-605f8f4fc35c",
"status": "issued",
"event_datetime": "2026-04-07 23:59:28",
"data": {
"borrower": {
"name": "Dante Ferrarini",
"document_number": "31057466093",
"related_party_key": "24fac77e-7782-4f72-b31a-daee288e34ed"
},
"contract": {
"document_key": null,
"number": "DWF1761222116",
"urls": [],
"signature_information": [
{
"signer_name": "Dante Ferrarini",
"signer_document_number": "31057466093",
"signer_role": "issuer",
"signer_email": null,
"signer_external_key": null,
"signature_url": null
}
]
},
"requester_identifier_key": "d1905ef5-19df-4183-bf0e-802b8229933c",
"iof_charge_method": "financed",
"collaterals": [],
"contract_fees": [
{
"fee_type": "spread",
"fee_amount": 3.02
}
],
"external_contract_fees": [
{
"fee_type": "tac",
"fee_amount": 0,
"tax_amount": 0,
"net_fee_amount": 0
}
],
"external_contract_fee_amount": 0,
"net_external_contract_fee_amount": 0,
"contract_fee_amount": 3.02,
"issue_amount": 1007.62,
"assignment_amount": 1010.64,
"cet": "5,8200%",
"annual_cet": "97,0501%",
"number_of_installments": 2,
"base_iof": 3.79,
"additional_iof": 3.83,
"total_iof": 7.62,
"ipoc_code": "324025020203131057466093DWF1761222116",
"prefixed_interest_rate": {
"annual_rate": 0.8373372409,
"created_at": "2026-04-07T23:59:22",
"daily_rate": 0.0016911989,
"interest_base": "calendar_days",
"monthly_rate": 0.052
},
"installments": [
{
"accrual_reference_date": null,
"additional_costs": [],
"advanced_paid_amount": 0,
"bank_slip_key": null,
"business_due_date": "2026-05-07",
"calendar_days": 30,
"digitable_line": null,
"due_date": "2026-05-07",
"due_interest": 0,
"due_principal": 1007.62,
"fine_amount": null,
"has_interest": true,
"installment_history": [],
"installment_key": "1dea396f-beb1-4df3-9822-35800b4c095a",
"installment_number": 1,
"installment_payment": [],
"installment_status": "created",
"installment_type": "principal",
"original_due_principal": 1007.62,
"original_pre_fixed_amount": 52.3996159,
"original_principal_amortization_amount": 491.4903841,
"original_total_amount": 543.89,
"paid_amount": 0,
"paid_at": null,
"post_fixed_amount": 0,
"pre_fixed_amount": 52.3996159,
"principal_amortization_amount": 491.4903841,
"qr_code_key": null,
"qr_code_url": null,
"renegotiation_proposal_key": null,
"tax_amount": 1.20906634,
"total_accrual_amount": null,
"total_amount": 543.89,
"total_paid_amount": 0,
"workdays": 20
},
{
"accrual_reference_date": null,
"additional_costs": [],
"advanced_paid_amount": 0,
"bank_slip_key": null,
"business_due_date": "2026-06-08",
"calendar_days": 31,
"digitable_line": null,
"due_date": "2026-06-07",
"due_interest": 0,
"due_principal": 516.1296159,
"fine_amount": null,
"has_interest": true,
"installment_history": [],
"installment_key": "370e73d1-55d8-431e-9b22-d08fb8297999",
"installment_number": 2,
"installment_payment": [],
"installment_status": "created",
"installment_type": "principal",
"original_due_principal": 516.1296159,
"original_pre_fixed_amount": 27.7603841,
"original_principal_amortization_amount": 516.1296159,
"original_total_amount": 543.89,
"paid_amount": 0,
"paid_at": null,
"post_fixed_amount": 0,
"pre_fixed_amount": 27.7603841,
"principal_amortization_amount": 516.1296159,
"qr_code_key": null,
"qr_code_url": null,
"renegotiation_proposal_key": null,
"tax_amount": 2.58168034,
"total_accrual_amount": null,
"total_amount": 543.89,
"total_paid_amount": 0,
"workdays": 20
}
],
"total_pre_fixed_amount": 80.16
}
}
Attention
Remember to save the DEBT-KEY returned in the response, as it will be required for queries, renegotiations, and reversals of the operation.
Response Body Details
| Field | Type | Description |
|---|---|---|
| webhook_type | string | Event type identifier |
| key | string | DEBT-KEY — unique identifier of the debt in QI SCD (UUID) |
| status | string | Current status of the debt |
| event_datetime | string | Date and time of the event (ISO 8601) |
| data | object | Data Object — Operation data |
Data Object
| Field | Type | Description |
|---|---|---|
| borrower | object | Borrower Response Object — Borrower data |
| contract | object | Contract Response Object — Contract data |
| requester_identifier_key | string | Requester identifier key (UUID) |
| iof_charge_method | string | IOF charge method — always "financed" |
| collaterals | array | List of collaterals associated with the operation |
| contract_fees | array | Contract Fees Object — QI Tech fees charged on the operation |
| external_contract_fees | array | External Contract Fees Object — External fees charged on the operation |
| external_contract_fee_amount | float | Total external contract fee amount |
| net_external_contract_fee_amount | float | Net external contract fee amount after taxes |
| contract_fee_amount | float | Total QI Tech contract fee amount |
| issue_amount | float | Nominal/issue value of the credit operation |
| assignment_amount | float | Acquisition value of the credit operation |
| cet | string | Monthly total effective cost (CET) |
| annual_cet | string | Annual total effective cost (CET) |
| number_of_installments | integer | Number of installments |
| base_iof | float | Base IOF amount |
| additional_iof | float | Additional IOF amount |
| total_iof | float | Total IOF amount |
| ipoc_code | string | Brazilian credit registry code generated by QI Tech |
| prefixed_interest_rate | object | Interest Rate Response Object — Nominal interest rate details |
| installments | array | Installments Response Object — Operation installments |
| total_pre_fixed_amount | float | Total pre-fixed interest amount across all installments |
Borrower Response Object
| Field | Type | Description |
|---|---|---|
| name | string | Full name of the borrower |
| document_number | string | Borrower's tax ID (CPF) |
| related_party_key | string | Borrower's unique identifier in QI Tech (UUID) |
Contract Response Object
| Field | Type | Description |
|---|---|---|
| document_key | string | Contract document key |
| number | string | Contract number |
| urls | array | List of contract document URLs |
| signature_information | array | Signature Information Object — Signature details |
Signature Information Object
| Field | Type | Description |
|---|---|---|
| signer_name | string | Signer's full name |
| signer_document_number | string | Signer's tax ID (CPF) |
| signer_role | string | Signer's role in the operation |
| signer_email | string | Signer's email address |
| signer_external_key | string | External signer key |
| signature_url | string | URL of the signed document |
Contract Fees Object
| Field | Type | Description |
|---|---|---|
| fee_type | string | Fee type |
| fee_amount | float | Fee amount |
External Contract Fees Object
| Field | Type | Description |
|---|---|---|
| fee_type | string | External fee type |
| fee_amount | float | External fee amount |
| tax_amount | float | Tax amount on the fee |
| net_fee_amount | float | Net fee amount after taxes |
Interest Rate Response Object
| Field | Type | Description |
|---|---|---|
| annual_rate | float | Annual interest rate |
| created_at | string | Rate creation timestamp (ISO 8601) |
| daily_rate | float | Daily interest rate |
| interest_base | string | Interest calculation base |
| monthly_rate | float | Monthly interest rate |
Installments Response Object
| Field | Type | Description |
|---|---|---|
| accrual_reference_date | string | Reference date for installment calculations |
| additional_costs | array | List of additional costs on the installment |
| advanced_paid_amount | float | Amount paid in advance |
| bank_slip_key | string | Bank slip (boleto) key |
| business_due_date | string | Due date adjusted to the next business day |
| calendar_days | integer | Calendar days between installments |
| digitable_line | string | Boleto digitable line |
| due_date | string | Installment due date |
| due_interest | float | Remaining interest before payment on due date |
| due_principal | float | Outstanding balance at time of installment |
| fine_amount | float | Fine amount applied |
| has_interest | boolean | Indicator of interest incidence on the installment |
| installment_history | array | History of installment events |
| installment_key | string | Unique installment identifier (UUID) |
| installment_number | integer | Installment number |
| installment_payment | array | List of payments made on this installment |
| installment_status | string | Current installment status |
| installment_type | string | Installment type — always "principal" |
| original_due_principal | float | Original outstanding balance at issuance |
| original_pre_fixed_amount | float | Original pre-fixed interest amount at issuance |
| original_principal_amortization_amount | float | Original principal amortization amount at issuance |
| original_total_amount | float | Original total installment amount at issuance |
| paid_amount | float | Amount already paid |
| paid_at | string | Date of payment |
| post_fixed_amount | float | Post-fixed interest amount — always 0 |
| pre_fixed_amount | float | Current pre-fixed interest amount |
| principal_amortization_amount | float | Principal amortization amount |
| qr_code_key | string | PIX QR code key |
| qr_code_url | string | PIX QR code URL |
| renegotiation_proposal_key | string | Renegotiation proposal key, if applicable |
| tax_amount | float | IOF amount on the installment |
| total_accrual_amount | float | Total accrual amount |
| total_amount | float | Total installment amount |
| total_paid_amount | float | Total amount paid on this installment so far |
| workdays | integer | Business days between installments |