CM


Click here for a complete list of operations.

DriverSearchUS

Search for Drivers in Coach Manager

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 /CM.asmx HTTP/1.1
Host: cmapi.pinnaclecoachlines.com.au
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://coachmanager.com/DriverSearchUS"

<?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>
    <DriverSearchUS xmlns="http://coachmanager.com/">
      <SessionKey>string</SessionKey>
      <SearchDetails>
        <DriverID>string</DriverID>
        <DriverType>string</DriverType>
        <FirstName>string</FirstName>
        <Surname>string</Surname>
        <Initials>string</Initials>
        <Company>string</Company>
        <Address>string</Address>
        <City>string</City>
        <State>string</State>
        <Zipcode>string</Zipcode>
        <TelNo>string</TelNo>
        <Email>string</Email>
        <DateCreated>string</DateCreated>
        <DateCreatedOperator>GreaterThan or EqualTo or LessThan</DateCreatedOperator>
      </SearchDetails>
    </DriverSearchUS>
  </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>
    <DriverSearchUSResponse xmlns="http://coachmanager.com/">
      <DriverSearchUSResult>
        <Result>Success or Fail</Result>
        <ResultDescription>string</ResultDescription>
        <Drivers>
          <USDriver>
            <DriverID>string</DriverID>
            <Schedule>boolean</Schedule>
            <DriverPortalAccess>boolean</DriverPortalAccess>
            <Subcontractor>boolean</Subcontractor>
            <DriverType>string</DriverType>
            <Title>string</Title>
            <Initials>string</Initials>
            <Surname>string</Surname>
            <FirstName>string</FirstName>
            <Address1>string</Address1>
            <Address2>string</Address2>
            <City>string</City>
            <State>string</State>
            <Zipcode>string</Zipcode>
            <TelNo1>string</TelNo1>
            <TelNo1Comment>string</TelNo1Comment>
            <TelNo2>string</TelNo2>
            <TelNo2Comment>string</TelNo2Comment>
            <TelNo3>string</TelNo3>
            <TelNo3Comment>string</TelNo3Comment>
            <FaxNo>string</FaxNo>
            <FaxNoComment>string</FaxNoComment>
            <Email>string</Email>
            <UsualVehicle>string</UsualVehicle>
            <CompanyID>string</CompanyID>
            <DefaultBase>string</DefaultBase>
            <Suspend>boolean</Suspend>
            <Deleted>boolean</Deleted>
            <DateCreated>string</DateCreated>
          </USDriver>
          <USDriver>
            <DriverID>string</DriverID>
            <Schedule>boolean</Schedule>
            <DriverPortalAccess>boolean</DriverPortalAccess>
            <Subcontractor>boolean</Subcontractor>
            <DriverType>string</DriverType>
            <Title>string</Title>
            <Initials>string</Initials>
            <Surname>string</Surname>
            <FirstName>string</FirstName>
            <Address1>string</Address1>
            <Address2>string</Address2>
            <City>string</City>
            <State>string</State>
            <Zipcode>string</Zipcode>
            <TelNo1>string</TelNo1>
            <TelNo1Comment>string</TelNo1Comment>
            <TelNo2>string</TelNo2>
            <TelNo2Comment>string</TelNo2Comment>
            <TelNo3>string</TelNo3>
            <TelNo3Comment>string</TelNo3Comment>
            <FaxNo>string</FaxNo>
            <FaxNoComment>string</FaxNoComment>
            <Email>string</Email>
            <UsualVehicle>string</UsualVehicle>
            <CompanyID>string</CompanyID>
            <DefaultBase>string</DefaultBase>
            <Suspend>boolean</Suspend>
            <Deleted>boolean</Deleted>
            <DateCreated>string</DateCreated>
          </USDriver>
        </Drivers>
      </DriverSearchUSResult>
    </DriverSearchUSResponse>
  </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 /CM.asmx HTTP/1.1
Host: cmapi.pinnaclecoachlines.com.au
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>
    <DriverSearchUS xmlns="http://coachmanager.com/">
      <SessionKey>string</SessionKey>
      <SearchDetails>
        <DriverID>string</DriverID>
        <DriverType>string</DriverType>
        <FirstName>string</FirstName>
        <Surname>string</Surname>
        <Initials>string</Initials>
        <Company>string</Company>
        <Address>string</Address>
        <City>string</City>
        <State>string</State>
        <Zipcode>string</Zipcode>
        <TelNo>string</TelNo>
        <Email>string</Email>
        <DateCreated>string</DateCreated>
        <DateCreatedOperator>GreaterThan or EqualTo or LessThan</DateCreatedOperator>
      </SearchDetails>
    </DriverSearchUS>
  </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>
    <DriverSearchUSResponse xmlns="http://coachmanager.com/">
      <DriverSearchUSResult>
        <Result>Success or Fail</Result>
        <ResultDescription>string</ResultDescription>
        <Drivers>
          <USDriver>
            <DriverID>string</DriverID>
            <Schedule>boolean</Schedule>
            <DriverPortalAccess>boolean</DriverPortalAccess>
            <Subcontractor>boolean</Subcontractor>
            <DriverType>string</DriverType>
            <Title>string</Title>
            <Initials>string</Initials>
            <Surname>string</Surname>
            <FirstName>string</FirstName>
            <Address1>string</Address1>
            <Address2>string</Address2>
            <City>string</City>
            <State>string</State>
            <Zipcode>string</Zipcode>
            <TelNo1>string</TelNo1>
            <TelNo1Comment>string</TelNo1Comment>
            <TelNo2>string</TelNo2>
            <TelNo2Comment>string</TelNo2Comment>
            <TelNo3>string</TelNo3>
            <TelNo3Comment>string</TelNo3Comment>
            <FaxNo>string</FaxNo>
            <FaxNoComment>string</FaxNoComment>
            <Email>string</Email>
            <UsualVehicle>string</UsualVehicle>
            <CompanyID>string</CompanyID>
            <DefaultBase>string</DefaultBase>
            <Suspend>boolean</Suspend>
            <Deleted>boolean</Deleted>
            <DateCreated>string</DateCreated>
          </USDriver>
          <USDriver>
            <DriverID>string</DriverID>
            <Schedule>boolean</Schedule>
            <DriverPortalAccess>boolean</DriverPortalAccess>
            <Subcontractor>boolean</Subcontractor>
            <DriverType>string</DriverType>
            <Title>string</Title>
            <Initials>string</Initials>
            <Surname>string</Surname>
            <FirstName>string</FirstName>
            <Address1>string</Address1>
            <Address2>string</Address2>
            <City>string</City>
            <State>string</State>
            <Zipcode>string</Zipcode>
            <TelNo1>string</TelNo1>
            <TelNo1Comment>string</TelNo1Comment>
            <TelNo2>string</TelNo2>
            <TelNo2Comment>string</TelNo2Comment>
            <TelNo3>string</TelNo3>
            <TelNo3Comment>string</TelNo3Comment>
            <FaxNo>string</FaxNo>
            <FaxNoComment>string</FaxNoComment>
            <Email>string</Email>
            <UsualVehicle>string</UsualVehicle>
            <CompanyID>string</CompanyID>
            <DefaultBase>string</DefaultBase>
            <Suspend>boolean</Suspend>
            <Deleted>boolean</Deleted>
            <DateCreated>string</DateCreated>
          </USDriver>
        </Drivers>
      </DriverSearchUSResult>
    </DriverSearchUSResponse>
  </soap12:Body>
</soap12:Envelope>