Update country card

You use this method to update a country card.

Request method

PUT

Request url

https://ponte.venice.be/webconnect/api/{DossierId}/Country?{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 country codes:
  • SystemNumber={SystemNumber}: Seek coiuntry card by system number.
Example: Update the country of the country card with country code 'BE' in dossier 'Demo'.
https://ponte.venice.be/webconnect/api/Demo/Country?CountryCode=BE

Request header

See request header.

Request body

Structure

Request (object)
  • Countries (array)

Examples

{
  "Request": {
    "Countries": {
      "Country": [
        {
          "Fields" : {
            "CountryCode": "BEL"
          }
        }
      ]
    }
  }
}
<?xml version="1.0" encoding="utf-8"?>
<Request>
  <Countries>
    <Country>
      <Fields>
        <CountryCode>BEL</CountryCode>
      </Fields>
    </Country>
  </Countries>
</Request>

Http status

See http status.

Response body

-