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: partnerhub.pbsdealers.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: AppointmentContactVehicleInfoGet
<?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>
<AppointmentContactVehicleInfoGet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PBS.PartnerHub.ServiceModel">
<AppointmentSince>0001-01-01T00:00:00</AppointmentSince>
<AppointmentUntil>0001-01-01T00:00:00</AppointmentUntil>
<ContactSalesRepRef>00000000-0000-0000-0000-000000000000</ContactSalesRepRef>
<SerialNumber>String</SerialNumber>
<Status xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</Status>
</AppointmentContactVehicleInfoGet>
</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>
<AppointmentContactVehicleInfoGetResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PBS.PartnerHub.ServiceModel">
<Items>
<AppointmentContactVehicleInfo>
<AppointmentId>00000000-0000-0000-0000-000000000000</AppointmentId>
<AppointmentIsWaiter>false</AppointmentIsWaiter>
<AppointmentNumber>0</AppointmentNumber>
<AppointmentPickupTime>0001-01-01T00:00:00</AppointmentPickupTime>
<AppointmentStatus>String</AppointmentStatus>
<AppointmentTime>0001-01-01T00:00:00</AppointmentTime>
<ContactFirstName>String</ContactFirstName>
<ContactId>00000000-0000-0000-0000-000000000000</ContactId>
<ContactLastName>String</ContactLastName>
<VehicleId>00000000-0000-0000-0000-000000000000</VehicleId>
<VehicleMake>String</VehicleMake>
<VehicleModel>String</VehicleModel>
<VehicleTrim>String</VehicleTrim>
<VehicleYear>String</VehicleYear>
</AppointmentContactVehicleInfo>
</Items>
</AppointmentContactVehicleInfoGetResponse>
</soap:Body>
</soap:Envelope>