API CombiUitvoering: verschil tussen versies

Uit DSP
Ga naar: navigatie, zoeken
Regel 11: Regel 11:
 
De XML opbouw van het bericht:
 
De XML opbouw van het bericht:
  
<code>
+
<syntaxhighlight lang="XML" style="border:3px dashed blue">
  
 
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:com="http://mijnaansluiting.nl/combi">
 
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:com="http://mijnaansluiting.nl/combi">
Regel 24: Regel 24:
 
</soapenv:Envelope>
 
</soapenv:Envelope>
  
</code>
+
</syntaxhighlight>
  
 
De volledige berichtdefinitie (WSDL) is te vinden op [https://s3.eu-central-1.amazonaws.com/wiki.dsplatform.nl/CombiUitvoering.wsdl CombiUitvoering.wsdl]
 
De volledige berichtdefinitie (WSDL) is te vinden op [https://s3.eu-central-1.amazonaws.com/wiki.dsplatform.nl/CombiUitvoering.wsdl CombiUitvoering.wsdl]

Versie van 18 jan 2021 om 18:45

Voor CAPO is een API beschikbaar waarmee de netbeheerder kan aangeven of een aanvraag wel of niet wordt uitgevoerd in de combi.

Daarvoor dient de netbeheerder via de API een bericht aan CAPO te sturen met daarin:

  • ClusterID (Aanvraagnummer, String)
  • Organisatiecode (Netbeheerder, String)
  • IsCombiUitvoering (Wel of niet in combi, Boolean (0/1))

Hiermee wordt de Aanvraag in CAPO gemarkeerd.

De XML opbouw van het bericht:

<syntaxhighlight lang="XML" style="border:3px dashed blue">

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:com="http://mijnaansluiting.nl/combi">

  <soapenv:Header/>
  <soapenv:Body>
     <com:CombiUitvoeringbericht>
        <ClusterID>?</ClusterID>
        <OrganisatieCode>?</OrganisatieCode>
        <IsCombiUitvoering>?</IsCombiUitvoering>
     </com:CombiUitvoeringbericht>
  </soapenv:Body>

</soapenv:Envelope>

</syntaxhighlight>

De volledige berichtdefinitie (WSDL) is te vinden op CombiUitvoering.wsdl