Transactions
Create a transaction and make the payment directly with a Pix
Create a transaction and make the payment directly with a Pix
post/v1/transactions/pix
Request body
Example request
{
"reference_id": "my_ref_518",
"transaction_limit_date": "2027-09-01",
"transaction_description": "Sale of tickets for the show on the 30th",
"sandbox": true,
"transaction_items": [
{
"item": "Tuition",
"amount": "80000",
"reference": "11/12",
"note": "November tuition"
}
],
"transaction_details": {
"amount": 10000,
"due_date": "2026-10-01",
"payment_limit_date": "2027-01-01",
"body_instructions": [
"Do not allow payment after 2027-01-01"
],
"late_fee": {
"mode": "PERCENTAGE",
"amount": "2.00"
},
"interest": {
"mode": "DAILY_PERCENTAGE",
"amount": "0.033"
},
"discount": {
"mode": "FIXED",
"date_1": "2026-09-21",
"amount_1": 3000,
"date_2": "2026-09-25",
"amount_2": 2500,
"date_3": "2026-09-27",
"amount_3": 2000
}
},
"split_rules": [
{
"amount": 9550,
"percentage": "0.1234",
"processing_fee": "MAIN"
}
],
"notification_url": "https://api.domain.com.br/v1/edubank-notification"
}Response
The object has been successfully created
Example response
{
"status_code": 200
}Changes
No recorded changes to this endpoint across all 1 revision of this API.