Update customer card
You use this method to update a customer card.
Request method
PUT
Request url
https://ponte.venice.be/webconnect/api/{DossierId}/Customer?{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 customers: |
https://ponte.venice.be/webconnect/api/Demo/Customer?NumberPair=2%091
Request header
See request header.
Request body
Structure
Request (object)
- Customers (array)
- Customer (limited to one) (array item)
- Fields (object)
Examples
{
"Request": {
"Customers": {
"Customer": [
{
"Fields" : {
"Contact": "An",
"Sex": "seWoman",
"AddressForm": "Attn Mrs.",
"PolitePhrase": "Dear Mrs. Vincke"
}
}
]
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<Request>
<Customers>
<Customer>
<Fields>
<Contact>An</Contact>
<Sex>seWoman</Sex>
<AddressForm>Attn Mrs.</AddressForm>
<PolitePhrase>Dear Mrs. Vincke</PolitePhrase>
</Fields>
</Customer>
</Customers>
</Request>