Set the HTTP method as POST and use Format=XML as a parameter in your URL and add the rest of parameters in your XML body. You can use all the parameters listed in Logics HTTP Post Manual in your XML format post body.
Example
HTTP Method: POST
URL: https://<subdomain>.logics.com/postlead.aspx?format=xml
Body:
<?xml version="1.0" encoding="utf-8"?>
<CaseData>
<CaseInformation>
<FName>John</FName>
<LName>Doe</LName>
<SSN>333445555</SSN>
<Home_Phone>5556667777</Home_Phone>
<DOB>1981-01-01</DOB>
</CaseInformation>
</CaseData>
Comments
0 comments
Article is closed for comments.