Hi,
I've been writing a javascript based client to use the SOAP api. My first test api call has been failing with a Error 500 (Internal Service Error). I can't find any errors in the XML SOAP request. When I comapre my XML SOAP request to the supplied examples, It seems to be equivelant to me. Can anyone confirm where this request appears to be valid? Is the webservice currently working?
Thanks!
version="1.0" encoding="UTF-8"?>
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SOAP-ENV:Header>
<jns0:AuthenticationHeader>
<mktowsUserId>REMOVED-FROM-THIS-POST</mktowsUserId>
<requestSignature>REMOVED-FROM-THIS-POST</requestSignature>
<requestTimestamp>2014-01-03T16:01:49-08:00</requestTimestamp>
</jns0:AuthenticationHeader>
</SOAP-ENV:Header>
<soap-env:Body xmlns:jns0='http://www.marketo.com/mktows/' >
<jns0:paramsGetMultipleLeads>
<leadSelector xsi:type="jns0:LeadKeySelector">
<keyType>EMAIL</keyType>
<keyValues>
<stringItem>byoung@4d.com</stringItem>
</keyValues>
</leadSelector>
<batchSize>10</batchSize>
</jns0:paramsGetMultipleLeads>
</soap-env:Body>
</soap-env:Envelope>