About Service

The AboutService operation returns the version of PC* Miler Web Services.

Schema
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
	<SOAP-ENV:Header>
		<m:AuthHeader xmlns:m="http://www.alk.com">
			<m:Authorization>String</<m:Authorization>
			<m:Date>String</m:Date>
		</m:AuthHeader>
	</SOAP-ENV:Header>
	<SOAP-ENV:Body>
		<m:AboutService xmlns:m="http://pcmiler.alk.com/APIs/v1.0">
			<m:Request>
				<m:Header>
					<m:DataVersion>String</m:DataVersion>
					<m:RequestType>String</m:RequestType>
				</m:Header>
			</m:Request>
		</m:AboutService>
	</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
            
Request Elements
Element Definition Required
DataVersion String value. The data version can be any version number ranging from 18 through 26. Use "LastQuarter" for last quarter data, "current" for current quarter data and baseline for release quarter data.

Usage: dataVersion = "current"
N
RequestType String value "AboutMapService".

Usage: RequestType = "AboutMapService"
Y
Calling AboutService
Request req = new Request();
req.Header = new RequestHeader();
req.Header.DataVersion = DataVersion.ToString();
req.Header.RequestType = "AboutMapService";

// Create the authentication and authorization header
AuthHeader soapHeader = GenerateAuthHeader(APIName);

// Create the service client
ServiceClient service = newServiceClient();
            
// Perform the call
Response response = service.AboutService(soapHeader, req);
            
Request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:alk="http://www.alk.com" xmlns:v1="http://pcmiler.alk.com/APIs/v1.0">
   &lysoapenv:Header>
      <alk:AuthHeader>
         <alk:Authorization> A77097D2D202A743BB1660E15794D7CA </alk:Authorization>
         <alk:Date> Tue, 12 Aug 2014 18:11:39 GMT</alk:Date>
      </alk:AuthHeader>
   </soapenv:Header>
   <soapenv:Body>
      <v1:AboutService>
         <v1:Request>
            <v1:Header>
               <v1:DataVersion>current</v1:DataVersion>
               <v1:RequestType>AboutMapService</v1:RequestType>
            </v1:Header>
         </v1:Request>
      </v1:AboutService>
   </soapenv:Body>
</soapenv:Envelope>
            
Response
<s:Envelope> xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Header />
  <s:Body>
    <AboutServiceResponse xmlns="http://pcmiler.alk.com/APIs/v1.0">
      <AboutServiceResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
        <Header>
          <Type>AboutMapService</Type>
          <Success>true</Success>
          <DataVersion>28.0.24.5492</DataVersion>
          <Errors i:nil="true" />
        </Header>
      </AboutServiceResult>
    </AboutServiceResponse>
  </s:Body>
</s:Envelope>