Reports


Click here for a complete list of operations.

GetCPDReport

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 /Reports.asmx HTTP/1.1
Host: webservices.flexcommute.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.flexcommute.com/webservice/GetCPDReport"

<?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:Header>
    <Authentication xmlns="http://www.flexcommute.com/webservice/">
      <Username>string</Username>
      <Password>string</Password>
      <IdMember>long</IdMember>
      <IdImpersonatingUser>int</IdImpersonatingUser>
    </Authentication>
  </soap:Header>
  <soap:Body>
    <GetCPDReport xmlns="http://www.flexcommute.com/webservice/">
      <criteria>
        <TPAID>string</TPAID>
        <TPACompanyID>string</TPACompanyID>
        <BenefitMonth>dateTime</BenefitMonth>
        <ChangeCode>CPRE or CPOST or CBOTH or A or UNCHANGE or ALL or CHANGED</ChangeCode>
        <IncludeTransactionBreakDown>boolean</IncludeTransactionBreakDown>
      </criteria>
    </GetCPDReport>
  </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>
    <GetCPDReportResponse xmlns="http://www.flexcommute.com/webservice/">
      <GetCPDReportResult TPAID="string" BenefitMonth="dateTime" ReportDate="dateTime">
        <CompanyCPD TPACompanyID="string" CompanyName="string">
          <TotalPreTaxAmount>decimal</TotalPreTaxAmount>
          <TotalPostTaxAmount>decimal</TotalPostTaxAmount>
          <TotalVFMAmount>decimal</TotalVFMAmount>
          <TotalGrandDeductionAmount>decimal</TotalGrandDeductionAmount>
          <TotalNumberOfEmployees>int</TotalNumberOfEmployees>
          <Divisions>
            <Division xsi:nil="true" />
            <Division xsi:nil="true" />
          </Divisions>
        </CompanyCPD>
        <IsReportDisplayOnly>boolean</IsReportDisplayOnly>
      </GetCPDReportResult>
    </GetCPDReportResponse>
  </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 /Reports.asmx HTTP/1.1
Host: webservices.flexcommute.com
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:Header>
    <Authentication xmlns="http://www.flexcommute.com/webservice/">
      <Username>string</Username>
      <Password>string</Password>
      <IdMember>long</IdMember>
      <IdImpersonatingUser>int</IdImpersonatingUser>
    </Authentication>
  </soap12:Header>
  <soap12:Body>
    <GetCPDReport xmlns="http://www.flexcommute.com/webservice/">
      <criteria>
        <TPAID>string</TPAID>
        <TPACompanyID>string</TPACompanyID>
        <BenefitMonth>dateTime</BenefitMonth>
        <ChangeCode>CPRE or CPOST or CBOTH or A or UNCHANGE or ALL or CHANGED</ChangeCode>
        <IncludeTransactionBreakDown>boolean</IncludeTransactionBreakDown>
      </criteria>
    </GetCPDReport>
  </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>
    <GetCPDReportResponse xmlns="http://www.flexcommute.com/webservice/">
      <GetCPDReportResult TPAID="string" BenefitMonth="dateTime" ReportDate="dateTime">
        <CompanyCPD TPACompanyID="string" CompanyName="string">
          <TotalPreTaxAmount>decimal</TotalPreTaxAmount>
          <TotalPostTaxAmount>decimal</TotalPostTaxAmount>
          <TotalVFMAmount>decimal</TotalVFMAmount>
          <TotalGrandDeductionAmount>decimal</TotalGrandDeductionAmount>
          <TotalNumberOfEmployees>int</TotalNumberOfEmployees>
          <Divisions>
            <Division xsi:nil="true" />
            <Division xsi:nil="true" />
          </Divisions>
        </CompanyCPD>
        <IsReportDisplayOnly>boolean</IsReportDisplayOnly>
      </GetCPDReportResult>
    </GetCPDReportResponse>
  </soap12:Body>
</soap12:Envelope>