Business Trade Finance
Create Trade Finance application
Creates an application for a trade credit line for the business specified in the request URL. Solarisbank will process the application manually. Use the GET endpoint to retrieve information about the application's status.
post/v1/businesses/{business_id}/trade_finance_applications
Path parameters
business_idstring required
ID of the business requesting the trade credit line.
Request body
Example request
{
"requested_credit_line": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"recipient_iban": "DE32110101001000000029",
"partner_score": "B",
"partner_reference_number": "3738dbd0-a547-4c11-99e7-770066a39292",
"partner_contact_number": "+49303003000",
"partner_contact_name": "Contact Name",
"nominal_interest_rate": 0.02,
"identification_id": "e876f41e9b8642bdaaff883ec2f0e144bid",
"creditreform_score": 150,
"creditreform_pd": "1.2",
"application_date": "2019-08-24"
}Response
The application was successfully created.
Example response
{
"status": "pending",
"requested_credit_line": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"recipient_iban": "DE92370601930002130041",
"partner_score": "4",
"partner_reference_number": "3738dbd0-a547-4c11-99e7-770066a39292",
"partner_contact_number": "123456789",
"partner_contact_name": "Contact Name",
"nominal_interest_rate": 0.02,
"identification_id": "e876f41e9b8642bdaaff883ec2f0e144bid",
"id": "55f39e2d78424ac9a9ad5b09adffece2btfa",
"creditreform_score": 150,
"creditreform_pd": "1.2",
"application_date": "2019-08-24"
}