To call any of the AutoSLM API webservices, just call the REST URL post the input body content as the input content listed below. Please replace the block marked "ACCESS CODE HERE" with your AutoSLM assigned access code which will be issued per third party company wanting to connect. Also where applicable, include the dealer code of the dealer this call relates to.

READ
Methods Available

GetDealers
GetCustomerList
GetCustomers
GetStaff
GetLeads
GetStockVehicles
CheckSale

WRITE
Methods Available

AddLead
AddLeadV2
AcceptLead
AddCustomer
AddActivity
AddStockVehicle
DeleteStockVehicle

GetDealers


This method gets a list of Dealers that you have access to from your access code.

URL : https://api.autoslm.com/GetDealers/

Input Body Content:

<Params>
<SecurityData>
<AccessCode>ACCESS CODE HERE</AccessCode>
</SecurityData>
</Params>

Sample Return Content:


<?xml version="1.0" encoding="UTF-8"?>
<Resultset>

<Dealer>
<RID>1005</RID>
<DealerCode>Grape1</DealerCode>
<Brand>Bmw</Brand>
<DealerName>Grapewood Motors UK</DealerName>
<Address1>Bald Eagle Drive</Address1>
<Address2/>
<Address3/>
<Town>Marco Island</Town>
<State_County>FL</State_County>
<PostCode_ZIP>34145</PostCode_ZIP>
</Dealer>

<Dealer>
<RID>1002</RID>
<DealerCode>MIM</DealerCode>
<Brand>Honda</Brand>
<DealerName>Marco Island Motors - Test Site</DealerName>
<Address1>test street</Address1>
<Address2>test 2</Address2>
<Address3>test 3</Address3>
<Town>test town</Town>
<State_County>FL</State_County>
<PostCode_ZIP>34145</PostCode_ZIP>
</Dealer>

<Dealer>
<RID>1011</RID>
<DealerCode>SAT</DealerCode>
<Brand>Honda</Brand>
<DealerName>South Africa WOM Test Site</DealerName>
<Address1/>
<Address2/>
<Address3/>
<Town/>
<State_County/>
<PostCode_ZIP/>
</Dealer>

</Resultset>