Create supplier card
You use this method to create a new supplier card.
Request method
POST
Request url
https://ponte.venice.be/webconnect/api/{DossierId}/Supplier
Context identification
| Identification | Description |
|---|---|
| DossierId | The unique identifier of the dossier. |
https://ponte.venice.be/webconnect/api/Demo/Supplier
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" : {
"Name": "My supplier NV",
"VatNum": "BE 0427.604.308",
"LegalForm": "NV",
...
}
}
]
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<Request>
<Suppliers>
<Supplier>
<Fields>
<Name>My supplier NV</Name>
<VatNum>BE 0427.604.308</VatNum>
<LegalForm>NV</LegalForm>
...
</Fields>
</Supplier>
</Suppliers>
</Request>
Http status
See http status.Response body
You can receive the response in json or xml.
Structure
Response (object)
- System number
- Number
- SubNumber
Examples
{
"Response": {
"SystemNumber": "5",
"Number": "2",
"SubNumber": "0"
}
}
<?xml version="1.0" encoding="utf-8"?> <Response> <SystemNumber>5</SystemNumber> <Number>2</Number> <SubNumber>0</SubNumber> </Response>