Freelancer Credit Line
Create freelancer credit line application
Creates a freelancer credit line application. The payload of this endpoint includes all the required financial information and account data about the customer, which the credit scorer uses to initiate a series of credit checks to determine the customer's credit risk and eligibility.
post/v1/freelancers/persons/{person_id}/credit_line_applications
Path parameters
person_idstring required
The unique person ID, generated after completing the person onboarding process.
Request body
Example request
{
"annual_turnover": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"foundation_date": "2019-08-24",
"legal_form": "FREE_OCCUPATION",
"monthly_net_profit": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"monthly_non_mortgage_credit_expense": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"monthly_private_fixed_cost": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"recipient_iban": "DE13110101014386274299",
"tax_id": "3012034567890"
}Response
Application
Example response
{
"credit_line_id": "c5f22b00baa845869ceb3a7d90d59bffccln",
"decision": "REJECTED",
"id": "7d903b7483294e3b902b89097d699dbdccla",
"identification_id": "51462340e8653f8e2864801e8ebb4131cidt",
"mandate_reference_number": "LXD3RGLRTP6HHM",
"net_disposable_income": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"offered_interest_rate": 0.11,
"offered_limit": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"person_id": "ad8f5cefdc73035f17973fecb4fa2ebccper",
"recipient_iban": "DE13110101014386274299",
"status": "rejected",
"status_description": "Rejected by Scorer"
}