Skip to content

Finance Integration

Payload structure for third party financiers who wish to integrate into Dealer Studio to process finance

POST request. Can provide API bearer token (OAUTH)

{
"dealership": {
"name": "Ford",
"address": "123 Main St, Anytown, USA",
"dealership_id": 123,
"dealership_name": "Ford",
"external_identifiers": [
{
"name": "Allied Introducer Code",
"value": "12345"
}
]
},
"contact": {
"contact_type": "private",
"first_name": "Jeremy",
"last_name": "Lynch",
"email": "test@test.com",
"phone": "0412312312",
"date_of_birth": "10/10/2002",
"drivers_license_number": "1234567890",
"drivers_license_expiry": "01/01/2025"
},
"website": {
"website_id": 1,
"website_name": "North West Subaru",
"manufacturer": "Subaru"
},
"asset": {
"price": 27290.0,
"price_type": "DAP",
"car_type": "used",
"make": "Ford",
"model": "Ranger",
"badge": "ABC",
"year": 2024,
"vin": "12345678901234567",
"regplate": "ABC123",
"stocknum": "abc123",
"catalogue_code": "1234567890",
"catalogue": "NVIC"
},
"deposit": 1000.0,
"loan_term": 60,
"repayment_frequency": "weekly",
"guaranteed_future_value": true,
"estimated_credit_rate": "Good",
"lead_cluster_id": 12345
}

Return Payload (from Financier back to Dealer Studio)

Section titled “Return Payload (from Financier back to Dealer Studio)”

POST

{
"external_application_id": 1,
"finance_options": [
{
"repayment_frequency": "weekly",
"interest_rate": 0.05,
"comparison_rate": 0.06,
"weekly_repayment": 200,
"fornightly_repayment": 400,
"monthly_repayment": 800,
"loan_term": 60,
"loan_amount": 10000.0,
"total_interest_payable": 1000.0,
"disclaimer": "This is a disclaimer",
"finance_expiry_date": "dd/mm/yyyy",
"redirect_url": "https://www.alliedpage.com.au/#{user_id}"
}
]
}