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: |
https://ponte.venice.be/webconnect/api/Demo/Country?CountryCode=BE
Request header
See request header.
Request body
Structure
Request (object)
- Countries (array)
- Country (limited to one) (array item)
- Fields (object)
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>