Update postal code card

You use this method to update a postal code card.

Request method

PUT

Request url

https://ponte.venice.be/webconnect/api/{DossierId}/PostalCode?{Key}={KeyValues}

Context identification

Identification Description
DossierId The unique identifier of the dossier.

Parameters

Parameter Description
{Key} The available keys to seek one or more postal codes:
  • SystemNumber={SystemNumber}: Seek postal code card by system number.
Example: Update the city of the postal code card with postal code '30121' and city 'Venice' in dossier 'Demo'.
https://ponte.venice.be/webconnect/api/Demo/PostalCode?PostalCodePair=30121%09Venice

Request header

See request header.

Request body

Structure

Request (object)
  • PostalCodes (array)

Examples

{
  "Request": {
    "PostalCodes": {
      "PostalCode": [
        {
          "Fields" : {
            "City": "Veneto"
          }
        }
      ]
    }
  }
}
<?xml version="1.0" encoding="utf-8"?>
<Request>
  <PostalCodes>
    <PostalCode>
      <Fields>
        <City>Veneto</City>
      </Fields>
    </PostalCode>
  </PostalCodes>
</Request>

Http status

See http status.

Response body

-