EPMS_Connect
Click here for a complete list of operations.
SubmitContact
Insert/Update a Contact into the database.
Test
The test form is only available for requests from the local machine.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /EnterpriseWebService/Service.asmx HTTP/1.1
Host: epms.strategicfactory.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://localhost/EnterpriseWebService/Enterprise Connect/SubmitContact"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SubmitContact xmlns="http://localhost/EnterpriseWebService/Enterprise Connect">
<Credentials>
<Username>string</Username>
<Password>string</Password>
</Credentials>
<Contact>
<Account>string</Account>
<ContactName>string</ContactName>
<FirstName>string</FirstName>
<LastName>string</LastName>
<JobTitle>string</JobTitle>
<ContactAlias>string</ContactAlias>
<ContactAddress1>string</ContactAddress1>
<ContactAddress2>string</ContactAddress2>
<ContactAddress3>string</ContactAddress3>
<ContactCity>string</ContactCity>
<ContactState>string</ContactState>
<ContactZipCode>string</ContactZipCode>
<Phone>string</Phone>
<Fax>string</Fax>
<CellPhone>string</CellPhone>
<HomePhone>string</HomePhone>
<ContactCountry>string</ContactCountry>
<ContactCounty>string</ContactCounty>
<Email>string</Email>
<Notes>string</Notes>
<UserDefined1>string</UserDefined1>
<UserDefined2>string</UserDefined2>
<UserDefined3>string</UserDefined3>
<UserDefined4>string</UserDefined4>
<UserDefined5>string</UserDefined5>
<UserDefined6>string</UserDefined6>
<UserDefined7>string</UserDefined7>
<UserDefined8>string</UserDefined8>
<UserDefined9>string</UserDefined9>
<UserDefined10>string</UserDefined10>
<UserDefined11>string</UserDefined11>
<UserDefined12>string</UserDefined12>
<UserDefined13>string</UserDefined13>
<UserDefined14>string</UserDefined14>
<UserDefined15>string</UserDefined15>
<UserDefined16>string</UserDefined16>
<UserDefined17>string</UserDefined17>
<UserDefined18>string</UserDefined18>
<UserDefined19>string</UserDefined19>
<UserDefined20>string</UserDefined20>
<SalesRepCode>string</SalesRepCode>
</Contact>
</SubmitContact>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SubmitContactResponse xmlns="http://localhost/EnterpriseWebService/Enterprise Connect">
<SubmitContactResult>
<ReturnStatus>int</ReturnStatus>
<Message>string</Message>
</SubmitContactResult>
</SubmitContactResponse>
</soap:Body>
</soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /EnterpriseWebService/Service.asmx HTTP/1.1
Host: epms.strategicfactory.com
Content-Type: application/soap+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>
<SubmitContact xmlns="http://localhost/EnterpriseWebService/Enterprise Connect">
<Credentials>
<Username>string</Username>
<Password>string</Password>
</Credentials>
<Contact>
<Account>string</Account>
<ContactName>string</ContactName>
<FirstName>string</FirstName>
<LastName>string</LastName>
<JobTitle>string</JobTitle>
<ContactAlias>string</ContactAlias>
<ContactAddress1>string</ContactAddress1>
<ContactAddress2>string</ContactAddress2>
<ContactAddress3>string</ContactAddress3>
<ContactCity>string</ContactCity>
<ContactState>string</ContactState>
<ContactZipCode>string</ContactZipCode>
<Phone>string</Phone>
<Fax>string</Fax>
<CellPhone>string</CellPhone>
<HomePhone>string</HomePhone>
<ContactCountry>string</ContactCountry>
<ContactCounty>string</ContactCounty>
<Email>string</Email>
<Notes>string</Notes>
<UserDefined1>string</UserDefined1>
<UserDefined2>string</UserDefined2>
<UserDefined3>string</UserDefined3>
<UserDefined4>string</UserDefined4>
<UserDefined5>string</UserDefined5>
<UserDefined6>string</UserDefined6>
<UserDefined7>string</UserDefined7>
<UserDefined8>string</UserDefined8>
<UserDefined9>string</UserDefined9>
<UserDefined10>string</UserDefined10>
<UserDefined11>string</UserDefined11>
<UserDefined12>string</UserDefined12>
<UserDefined13>string</UserDefined13>
<UserDefined14>string</UserDefined14>
<UserDefined15>string</UserDefined15>
<UserDefined16>string</UserDefined16>
<UserDefined17>string</UserDefined17>
<UserDefined18>string</UserDefined18>
<UserDefined19>string</UserDefined19>
<UserDefined20>string</UserDefined20>
<SalesRepCode>string</SalesRepCode>
</Contact>
</SubmitContact>
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+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>
<SubmitContactResponse xmlns="http://localhost/EnterpriseWebService/Enterprise Connect">
<SubmitContactResult>
<ReturnStatus>int</ReturnStatus>
<Message>string</Message>
</SubmitContactResult>
</SubmitContactResponse>
</soap12:Body>
</soap12:Envelope>