Read the parameter fields

You use this method to read the parameters.

Request method

GET

Request url

https://ponte.venice.be/webconnect/api/{DossierId}/Parameter

Context identification

Identification Description
DossierId The unique identifier of the dossier.
Example: From dossier 'Demo' get the parameters.
https://ponte.venice.be/WebConnect/api/Demo/Parameter

Request header

See request header.

Request body

-

Http status

See http status.

Response body

You can receive the response in json or xml.

Structure

Response (object)

Examples

{
  "Response": {
    "Parameters": {
      "VatRates" : {
        "VatRate" : [
          "0.00",
          "6.00",
          "12.00",
          "21.00",
          ...
        ]
      },
      "InvoicingLanguages" : {
        "InvoicingLanguage" : [
          "Nld",
          "Fra",
          ...
        ]
      },
      "VatDeclarationFrequence": "3",
      "IcStatementFrequence": "3",
      "ItrDeclarationFrequence": "1",
      "ItrArrivalModel": "True",
      "ItrDispatchModel": "True",
      "ItrArrivalDeclarationType": "eidtStandard",
      "ItrDispatchDeclarationType": "eidtExtended",
      ...
    }
  }
}
<?xml version="1.0" encoding="utf-8"?>
<Response>
  <Parameters>
    <VatRates>
      <VatRate>0.00</VatRate>
      <VatRate>6.00</VatRate>
      <VatRate>12.00</VatRate>
      <VatRate>21.00</VatRate>
      ...
    </VatRates>
    <InvoicingLanguages>
      <InvoicingLanguage>Nld</InvoicingLanguage>
      <InvoicingLanguage>Fra</InvoicingLanguage>
      ...
    </InvoicingLanguages>
    <VatDeclarationFrequence>3</VatDeclarationFrequence>
    <IcStatementFrequence>3</IcStatementFrequence>
    <ItrDeclarationFrequence>1</ItrDeclarationFrequence>
    <ItrArrivalModel>True</ItrArrivalModel>
    <ItrDispatchModel>True</ItrDispatchModel>
    <ItrArrivalDeclarationType>eidtStandard</ItrArrivalDeclarationType>
    <ItrDispatchDeclarationType>eidtExtended</ItrDispatchDeclarationType>
    ...
  </Parameters>
</Response>