To override the Content-type in your clients, use the HTTP Accept Header, append the .soap12 suffix or ?format=soap12
HTTP + SOAP12
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /soap12 HTTP/1.1
Host: sdk.lovettcommercial.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<post_tenantList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TenantSDK.post.login">
<email>String</email>
<token>String</token>
<tokensecret>String</tokensecret>
</post_tenantList>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<post_tenantListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TenantSDK.post.login">
<list>
<tenantInfo>
<ACHlist>
<post_ACHInfo>
<ACH_type>0</ACH_type>
<creaby>String</creaby>
<creadate>0001-01-01T00:00:00</creadate>
<status>String</status>
</post_ACHInfo>
</ACHlist>
<access>0</access>
<account>String</account>
<checkidnumber>String</checkidnumber>
<checkindate>String</checkindate>
<checkinopenyn>false</checkinopenyn>
<checkinstatus>0</checkinstatus>
<checkinyn>false</checkinyn>
<checkoutdate>String</checkoutdate>
<checkoutopenyn>false</checkoutopenyn>
<checkoutstatus>0</checkoutstatus>
<checkoutyn>false</checkoutyn>
<cianame>String</cianame>
<closetime>String</closetime>
<count>String</count>
<email>String</email>
<firstname>String</firstname>
<firstname_owner>String</firstname_owner>
<idcia>String</idcia>
<idnumber>String</idnumber>
<idproject>String</idproject>
<lastname>String</lastname>
<lastname_owner>String</lastname_owner>
<opentime>String</opentime>
<post_suitenumber>String</post_suitenumber>
<premiseAddress>String</premiseAddress>
<startdate>0001-01-01T00:00:00</startdate>
<tenantaddress>String</tenantaddress>
<tenantcity>String</tenantcity>
<tenantdba>String</tenantdba>
<tenantname>String</tenantname>
<tenantphone>String</tenantphone>
<tenantzipcode>String</tenantzipcode>
<termfrom>0001-01-01T00:00:00</termfrom>
<termto>0001-01-01T00:00:00</termto>
<ticketCount>String</ticketCount>
<ticketOndoingCount>String</ticketOndoingCount>
<zero5>String</zero5>
</tenantInfo>
</list>
<message>String</message>
<result>0</result>
</post_tenantListResponse>
</soap12:Body>
</soap12:Envelope>