Create country card
You use this method to create a new country card.
Request method
POST
Request url
https://ponte.venice.be/webconnect/api/{DossierId}/Country
Context identification
Identification | Description |
---|---|
DossierId | The unique identifier of the dossier. |
https://ponte.venice.be/webconnect/api/Demo/Country
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": "BE", "NameNld": "België" ... } } ] } } }
<?xml version="1.0" encoding="utf-8"?> <Request> <Countries> <Country> <Fields> <CountryCode>BE</CountryCode> <NameNld>België</NameNld> ... </Fields> </Country> </Countries> </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>