v1

latestOpenAPI 3.1.02026-07-241210356.3 KB
Customers

Update

This endpoint allows you to update an existing customer in the system. You can modify various attributes of the customer.

post/Customers/Update/{uid}

Path parameters

uidstring required

Customer unique identifier.

Headers

api-keystring required

API Key

secret-keystring required

Secret Key

Request body

emailstring

Customer email address.

customer_namestring

Customer name.

paying_vatboolean

Let's the system know if the customer is paying VAT or not.

vat_numberstring

Customer or Company VAT number.

customer_numberstring

Internal customer number in the system.

notesstring

Notes, comments, or additional information about the customer.

phonestring

Customer phone number.

business_addressstring

Business address of the customer.

business_citystring

Business city.

business_postal_codestring

Business postal code.

business_country_isostring

Business country code.

subject_codestring

External customer number in other ERP or other systems.

communication_emailstring

Email for communication purposes.

Example request

{
  "contacts": [
    {
      "contact_country_iso": "IL"
    }
  ]
}

Response

200

Example response

{
  "result": {
    "status": "success",
    "description": "operation has been success"
  },
  "data": {
    "customer_uid": "84aa6e4e-fe42-4d5f-b9cd-59dbc3817f10"
  }
}