Business fronting
(Factoring only) Trigger a partial loan payout for a business fronting factoring
Triggers a partial loan payout related to a business fronting factoring application. The loan payout is used to purchase receivables in multiple partial payouts. You must add the required transaction details in the request body.
post/v1/businesses/{business_id}/fronting_loans/{loan_id}/payouts
Path parameters
business_idstring required
The ID of the business that applied for the fronting factoring.
loan_idstring required
The ID of the loan for which a partial payout is made.
Request body
Example request
{
"amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"recipient_iban": "DE15100100100003404109",
"recipient_name": "Daniel Schmidt",
"tag": "INITIAL_PAYOUT",
"transaction_description": "Example transaction.",
"transaction_end_to_end_id": "DDHHDHG333243"
}Response
Payout
Example response
{
"amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"id": "963347398e47416c9df216a63ef035c2bflp",
"loan_id": "29e1a05906954ce082ec779d81de8c1ebflo",
"recipient_iban": "DE92370601930002130041",
"recipient_name": "Max Mustermann",
"status": "transfers_pending",
"tag": "INITIAL_PAYOUT",
"transaction_description": "Example transaction.",
"transaction_end_to_end_id": "DDHHDHG333243"
}