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

CheckSale


This method gets a list of customers with sale done or not.

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

Input Body Content:

<Params>
<SecurityData>
<AccessCode>ACCESS CODE HERE</AccessCode>
<DealerCode>DEALER CODE HERE</DealerCode>
</SecurityData>
<XMLData>
<InputParams>
<leadid>a list of comma separated lead ids</leadid>
<custid>a list of comma separated customer ids</custid>
<startdate>Start date in format yyyy-mm-dd</startdate>
<enddate>End date in format yyyy-mm-dd</enddate>
</InputParams>
</XMLData>
</Params>

Sample Return Content:


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

<Resultset>

<sales>

<sale>
<leadid>2194341</leadid>
<custid>10112632587</custid>
<saledone>YES</saledone>
<saledate>2025-09-23</saledate>
</sale>

<sale>
<leadid>2194342</leadid>
<custid>10112632590</custid>
<saledone>NO</saledone>
<saledate></saledate>
</sale>

</sales>

</Resultset>