siigo_update_customer
Modify existing customer information in the Siigo accounting system by providing the customer ID and updated data fields.
Instructions
Update an existing customer
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| customer | Yes | Customer data to update | |
| id | Yes | Customer ID | 
Input Schema (JSON Schema)
{
  "properties": {
    "customer": {
      "description": "Customer data to update",
      "type": "object"
    },
    "id": {
      "description": "Customer ID",
      "type": "string"
    }
  },
  "required": [
    "id",
    "customer"
  ],
  "type": "object"
}