Create customer card

You use this method to create a new customer card.

Request method

POST

Request url

https://ponte.venice.be/webconnect/api/{DossierId}/Customer

Context identification

Identification Description
DossierId The unique identifier of the dossier.
Example: Create a new customer card in dossier 'Demo'.
https://ponte.venice.be/webconnect/api/Demo/Customer

Request header

See request header.

Request body

Structure

Request (object)
  • Customers (array)

Examples

{
  "Request": {
    "Customers": {
      "Customer": [
        {
          "Fields" : {
            "Name": "My customer NV",
            "VatNum": "BE 0427.604.308",
            "LegalForm": "NV",
            ...
          }
        }
      ]
    }
  }
}
<?xml version="1.0" encoding="utf-8"?>
<Request>
  <Customers>
    <Customer>
      <Fields>
        <Name>My customer NV</Name>
        <VatNum>BE 0427.604.308</VatNum>
        <LegalForm>NV</LegalForm>
        ...
      </Fields>
    </Customer>
  </Customers>
</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>