Sorry, you need to enable JavaScript to visit this website.

1 Create a Seed for an application

Action

Create or update a seed for an application.

The seed can then be used to pre-populate application data future applications with the specified data or the url provided for the seed can be used to direct buyers to creating an application for the seed using the online MFC vehicle finance application process.

When updating an application seed only the fields that are required to be updated and the application seed identifier need to be supplied.


Method POST
Endpoint https://api.nedbank.co.za/apimarket/sandbox/vehicleassetfinance/business/v3/seeds
Request
Headers
Header Value Description
x-ibm-client-id <YOUR CLIENT ID> The client ID you received when creating the app on the portal.
x-ibm-client-secret <YOUR CLIENT SECRET> The client secret you received when creating the app on the portal.
x-mfc-notify true or false Whether or not MFC notifications should be sent to buyers who use this seed to create applications.

Body JSON
                                
{
  "dealType": "Private",
  "data": {
	"buyer": {
	  "birthCountryId": 11,
	  "cellphone": "0123456789",
	  "email": "email@gmail.co.za",
	  "ethnicGroupId": 2,
	  "firstName": "henry",
	  "hasForeignTaxObligation": true,
	  "hasMultiNationality": true,
	  "hasUsNationality": true,
	  "homePhoneNumber": "0123456789",
	  "identityNumber": "6677035136089",
	  "lastName": "Ortel",
	  "maritalStatusId": 2,
	  "maritalTypeId": 2,
	  "nationalityCountryId": 11,
	  "titleId": 1,
	  "workPhoneNumber": "0123456789"
	},
	"buyerAddress": {
	  "address1": "135 Nedbank",
	  "address2": "Rivonia Road",
	  "city": "Sandton",
	  "postalAddress1": "135 Nedbank",
	  "postalAddress2": "Rivonia Road",
	  "postalCity": "Sandton",
	  "postalPostCode": "2196",
	  "postalSuburb": "Cresta",
	  "postCode": "2196",
	  "receiveMailAtAddress": true,
	  "residentialStatusId": 1,
	  "residentSince": "2019-10-07T09:32:03.176Z",
	  "suburb": "Cresta"
	},
	"buyerBanking": {
	  "accountNumber": "01154276191",
	  "accountTypeId": 1,
	  "bankId": 2,
	  "branchCode": "198765"
	},
	"buyerEmployment": {
	  "employer": "NedBank",
	  "employmentStartDate": "2019-10-07T09:32:03.176Z",
	  "employmentTypeId": 4,
	  "industryTypeId": 6,
	  "occupationTypeId": 18
	},
	"buyerMonthlyExpense": {
	  "account": 50000,
	  "clothing": 5000,
	  "creditCard": 3000,
	  "education": 2000,
	  "entertainment": 1000,
	  "foodAndHousehold": 2000,
	  "homeLoansOrRent": 0,
	  "loan": 2000,
	  "netSalary": 0,
	  "grossSalary": 0,
	  "other": 0,
	  "phone": 0,
	  "policiesAndInsurance": 0,
	  "savings": 0,
	  "transportation": 0,
	  "utilities": 0
	},
	"seller": {
	  "address1": "105 Rivonia Road",
	  "address2": "Sandton",
	  "cellphone": "0763540710",
	  "city": "Sandton",
	  "email": "luke@nedbank.co.za",
	  "firstName": "luke",
	  "identityNumber": "5704035136089",
	  "lastName": "Paruman",
	  "postCode": "2096",
	  "suburb": "Darrenwood"
	},
	"sellerBanking": {
	  "accountHolder": "Luke Paruman",
	  "accountNumber": "01124387654",
	  "accountTypeId": 1,
	  "bankId": 2,
	  "branchCode": "632005"
	},
	"vehicle": {
	  "dealer": "Robert",
	  "balloonPercentage": 0,
	  "dealerCode": "876",
	  "deposit": 0,
	  "firstInstalmentDate": "2019-10-07T09:32:03.177Z",
	  "loanPeriod": 0,
	  "mmCode": "098",
	  "new": true,
	  "offerAccepted": true,
	  "purchasePrice": 230000,
	  "vehicleTypeId": 1,
	  "year": 2018,
	  "regNumber": "987567677",
	  "rejectionReason": "NA",
	  "vinNumber": "9877798004325"
	}
  },
  "verifyVehicle": true,
  "lockData": true
}
                            
                            
Response JSON
                            
{
    "data": {
        "applicationSeedId": 4,
        "applicationSeedUrl": "http://localhost:4200/login#private!4",
        "vehicleVerified": true,
        "application": {
            "dealType": "Private",
            "description": "2018 BMW 320i GT A/T (F34)",
            "locked": true,
            "notifyUsers": true,
            "sourceClientId": "sc",
            "createdDate": "2019-10-09T12:21:26.7594858+02:00",
            "modifiedDate": "2019-10-09T12:21:26.7594858+02:00",
            "id": 4,
            "populated": false
        },
        "vehicle": {
            "balloonPercentage": 0,
            "dealer": "Robert",
            "dealerCode": "876",
            "deposit": 0,
            "firstInstalmentDate": "2019-10-07T09:32:03.177Z",
            "loanPeriod": 0,
            "make": "BMW",
            "mmCode": "05044130",
            "model": "320i GT A/T (F34)",
            "new": true,
            "offerAccepted": true,
            "purchasePrice": 230000,
            "regNumber": "987567677",
            "rejectionReason": "NA",
            "vehicleTypeCode": "A",
            "vehicleTypeId": 1,
            "vehicleTypeName": "Light Vehicle",
            "verified": true,
            "vinNumber": "9877798004325",
            "year": 2018,
            "createdDate": "2019-10-09T12:21:27.6271652+02:00",
            "modifiedDate": "2019-10-09T12:21:27.6271652+02:00",
            "id": 4,
            "populated": false
        }
    },
    "metaData": {
        "code": "R00",
        "message": "Operation successful.",
        "name": "Success"
    }
}