Service1


Click here for a complete list of operations.

GetPostV2

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 /Service1.asmx HTTP/1.1
Host: maexws.blokweg.nl
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.fitsolutions.nl/ws/1/GetPostV2"

<?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>
    <GetPostV2 xmlns="http://www.fitsolutions.nl/ws/1/">
      <autorisatie>
        <Login>string</Login>
        <Wachtwoord>string</Wachtwoord>
        <LicentieNr>string</LicentieNr>
      </autorisatie>
      <polisId>long</polisId>
      <ExternId>string</ExternId>
    </GetPostV2>
  </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>
    <GetPostV2Response xmlns="http://www.fitsolutions.nl/ws/1/">
      <GetPostV2Result xmlns="http://www.fitsolutions.nl/ws/1/getPostv2">
        <ResponseValid>boolean</ResponseValid>
        <Post>
          <MaatschappijNaam>string</MaatschappijNaam>
          <ProductNaam>string</ProductNaam>
          <ProductType>KredietAanvraag or Benzine</ProductType>
          <ContractNummer>string</ContractNummer>
          <InvoerDatum>
            <Dag>int</Dag>
            <Maand>int</Maand>
            <Jaar>int</Jaar>
          </InvoerDatum>
          <WijzigingsDatum>
            <Dag>int</Dag>
            <Maand>int</Maand>
            <Jaar>int</Jaar>
          </WijzigingsDatum>
          <IngangsDatum>
            <Dag>int</Dag>
            <Maand>int</Maand>
            <Jaar>int</Jaar>
          </IngangsDatum>
          <EindDatum>
            <Dag>int</Dag>
            <Maand>int</Maand>
            <Jaar>int</Jaar>
          </EindDatum>
          <Kantoor>string</Kantoor>
          <Status>string</Status>
          <SubStatus>string</SubStatus>
          <Verkoper>string</Verkoper>
          <Subagent>string</Subagent>
          <Bron>string</Bron>
          <AccountManager>string</AccountManager>
          <KredietAanvraag>
            <VervalDatum xsi:nil="true" />
            <UitbetaaldDatum xsi:nil="true" />
            <LeenBedrag>decimal</LeenBedrag>
            <DepotBedrag>decimal</DepotBedrag>
            <Blokkade>decimal</Blokkade>
            <RestSaldo>decimal</RestSaldo>
            <DkPerc>decimal</DkPerc>
            <Looptijd>string</Looptijd>
            <Termijnbedrag>decimal</Termijnbedrag>
            <Maandrente>decimal</Maandrente>
            <EffectieveJaarrente>decimal</EffectieveJaarrente>
            <NominaleJaarrente>decimal</NominaleJaarrente>
            <CcdBedrag>decimal</CcdBedrag>
            <UrlsVoorDigitaalOndertekenen xsi:nil="true" />
          </KredietAanvraag>
          <Benzine>
            <Merk>string</Merk>
            <Model>string</Model>
            <Kenteken>string</Kenteken>
            <Bouwjaar>string</Bouwjaar>
            <CatalogusWaarde>decimal</CatalogusWaarde>
            <DagWaarde>decimal</DagWaarde>
            <LedigGewicht>string</LedigGewicht>
            <LaadGewicht>string</LaadGewicht>
            <Regio>string</Regio>
            <MeldCode>string</MeldCode>
            <KmPerJaar>string</KmPerJaar>
            <SchadeVrijeJaren>string</SchadeVrijeJaren>
            <Branche>MotorRijtuigen or Auto or Caravan or Bromfiets or Rijwiel or MotorOfScooter</Branche>
            <BrandStof>Aardgas or Benzine or Cryogeen or Diesel or Elektra or AutogasLPG or Hybride or HybrideDiesel or HybrideBenzine or HybrideLPG</BrandStof>
            <Gebruik>Leasing or ParticulierEnzakelijk or Particulier or OverwegendZakelijk</Gebruik>
            <ExclusiefBtw>Ja or Nee</ExclusiefBtw>
            <VervalDatum xsi:nil="true" />
            <BetalingsTermijnInMaanden>string</BetalingsTermijnInMaanden>
            <Looptijd>string</Looptijd>
            <Verzekeringen xsi:nil="true" />
          </Benzine>
        </Post>
        <ErrorCode>int</ErrorCode>
        <ErrorMessage>string</ErrorMessage>
      </GetPostV2Result>
    </GetPostV2Response>
  </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 /Service1.asmx HTTP/1.1
Host: maexws.blokweg.nl
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>
    <GetPostV2 xmlns="http://www.fitsolutions.nl/ws/1/">
      <autorisatie>
        <Login>string</Login>
        <Wachtwoord>string</Wachtwoord>
        <LicentieNr>string</LicentieNr>
      </autorisatie>
      <polisId>long</polisId>
      <ExternId>string</ExternId>
    </GetPostV2>
  </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>
    <GetPostV2Response xmlns="http://www.fitsolutions.nl/ws/1/">
      <GetPostV2Result xmlns="http://www.fitsolutions.nl/ws/1/getPostv2">
        <ResponseValid>boolean</ResponseValid>
        <Post>
          <MaatschappijNaam>string</MaatschappijNaam>
          <ProductNaam>string</ProductNaam>
          <ProductType>KredietAanvraag or Benzine</ProductType>
          <ContractNummer>string</ContractNummer>
          <InvoerDatum>
            <Dag>int</Dag>
            <Maand>int</Maand>
            <Jaar>int</Jaar>
          </InvoerDatum>
          <WijzigingsDatum>
            <Dag>int</Dag>
            <Maand>int</Maand>
            <Jaar>int</Jaar>
          </WijzigingsDatum>
          <IngangsDatum>
            <Dag>int</Dag>
            <Maand>int</Maand>
            <Jaar>int</Jaar>
          </IngangsDatum>
          <EindDatum>
            <Dag>int</Dag>
            <Maand>int</Maand>
            <Jaar>int</Jaar>
          </EindDatum>
          <Kantoor>string</Kantoor>
          <Status>string</Status>
          <SubStatus>string</SubStatus>
          <Verkoper>string</Verkoper>
          <Subagent>string</Subagent>
          <Bron>string</Bron>
          <AccountManager>string</AccountManager>
          <KredietAanvraag>
            <VervalDatum xsi:nil="true" />
            <UitbetaaldDatum xsi:nil="true" />
            <LeenBedrag>decimal</LeenBedrag>
            <DepotBedrag>decimal</DepotBedrag>
            <Blokkade>decimal</Blokkade>
            <RestSaldo>decimal</RestSaldo>
            <DkPerc>decimal</DkPerc>
            <Looptijd>string</Looptijd>
            <Termijnbedrag>decimal</Termijnbedrag>
            <Maandrente>decimal</Maandrente>
            <EffectieveJaarrente>decimal</EffectieveJaarrente>
            <NominaleJaarrente>decimal</NominaleJaarrente>
            <CcdBedrag>decimal</CcdBedrag>
            <UrlsVoorDigitaalOndertekenen xsi:nil="true" />
          </KredietAanvraag>
          <Benzine>
            <Merk>string</Merk>
            <Model>string</Model>
            <Kenteken>string</Kenteken>
            <Bouwjaar>string</Bouwjaar>
            <CatalogusWaarde>decimal</CatalogusWaarde>
            <DagWaarde>decimal</DagWaarde>
            <LedigGewicht>string</LedigGewicht>
            <LaadGewicht>string</LaadGewicht>
            <Regio>string</Regio>
            <MeldCode>string</MeldCode>
            <KmPerJaar>string</KmPerJaar>
            <SchadeVrijeJaren>string</SchadeVrijeJaren>
            <Branche>MotorRijtuigen or Auto or Caravan or Bromfiets or Rijwiel or MotorOfScooter</Branche>
            <BrandStof>Aardgas or Benzine or Cryogeen or Diesel or Elektra or AutogasLPG or Hybride or HybrideDiesel or HybrideBenzine or HybrideLPG</BrandStof>
            <Gebruik>Leasing or ParticulierEnzakelijk or Particulier or OverwegendZakelijk</Gebruik>
            <ExclusiefBtw>Ja or Nee</ExclusiefBtw>
            <VervalDatum xsi:nil="true" />
            <BetalingsTermijnInMaanden>string</BetalingsTermijnInMaanden>
            <Looptijd>string</Looptijd>
            <Verzekeringen xsi:nil="true" />
          </Benzine>
        </Post>
        <ErrorCode>int</ErrorCode>
        <ErrorMessage>string</ErrorMessage>
      </GetPostV2Result>
    </GetPostV2Response>
  </soap12:Body>
</soap12:Envelope>