HTTP + SOAP11
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /soap11 HTTP/1.1
Host: api.podapp.com.au
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: SetLocationsRequest
<?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>
<SetLocationsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Transfocus.POD.WS.Services.TMS">
<AuthToken xmlns="http://schemas.datacontract.org/2004/07/Transfocus.POD.WS.Services.Objects">String</AuthToken>
<Locations xmlns:d2p1="http://schemas.datacontract.org/2004/07/Transfocus.POD.FoxPro.Models.TMS">
<d2p1:Location>
<d2p1:Active>false</d2p1:Active>
<d2p1:Address>String</d2p1:Address>
<d2p1:Address1>String</d2p1:Address1>
<d2p1:City>String</d2p1:City>
<d2p1:Code>String</d2p1:Code>
<d2p1:CountryID>0</d2p1:CountryID>
<d2p1:Email>String</d2p1:Email>
<d2p1:GeoLatitude>0</d2p1:GeoLatitude>
<d2p1:GeoLongitude>0</d2p1:GeoLongitude>
<d2p1:ID>00000000-0000-0000-0000-000000000000</d2p1:ID>
<d2p1:Locality>String</d2p1:Locality>
<d2p1:Name>String</d2p1:Name>
<d2p1:PostCode>String</d2p1:PostCode>
<d2p1:State>String</d2p1:State>
<d2p1:Subzone>String</d2p1:Subzone>
<d2p1:Table>String</d2p1:Table>
<d2p1:Type>String</d2p1:Type>
<d2p1:TypeFoxPro>String</d2p1:TypeFoxPro>
<d2p1:TypeNote>String</d2p1:TypeNote>
<d2p1:Zone>String</d2p1:Zone>
</d2p1:Location>
</Locations>
</SetLocationsRequest>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
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>
<SetLocationsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Transfocus.POD.WS.Services.TMS">
<ErrorCode xmlns="http://schemas.datacontract.org/2004/07/Transfocus.POD.WS.Services.Objects">0</ErrorCode>
<ErrorMessage xmlns="http://schemas.datacontract.org/2004/07/Transfocus.POD.WS.Services.Objects">String</ErrorMessage>
<Success xmlns="http://schemas.datacontract.org/2004/07/Transfocus.POD.WS.Services.Objects">false</Success>
</SetLocationsResponse>
</soap:Body>
</soap:Envelope>