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