Create postal code card

You use this method to create a new postal code card.

Request method

POST

Request url

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

Context identification

Identification Description
DossierId The unique identifier of the dossier.
Example: Create a new postal code card in dossier 'Demo'.
https://ponte.venice.be/webconnect/api/Demo/PostalCode

Request header

See request header.

Request body

Structure

Request (object)
  • PostalCodes (array)

Examples

{
  "Request": {
    "PostalCodes": {
      "PostalCode": [
        {
          "Fields" : {
            "PostalCode": "30121",
            "City": "Venice",
            "CountryCode": "IT",
            ...
          }
        }
      ]
    }
  }
}
<?xml version="1.0" encoding="utf-8"?>
<Request>
  <PostalCodes>
    <PostalCode>
      <Fields>
        <PostalCode>30121</PostalCode>
        <City>Venice</City>
        <CountryCode>IT</CountryCode>
        ...
      </Fields>
    </PostalCode>
  </PostalCodes>
</Request>

Http status

See http status.

Response body

You can receive the response in json or xml.

Structure

Response (object)
  • System number

Examples

{
  "Response": {
    "SystemNumber": "5"
  }
}
<?xml version="1.0" encoding="utf-8"?>
<Response>
  <SystemNumber>5</SystemNumber>
</Response>