siigo_get_customer
Retrieve customer details from Siigo accounting software using a customer ID to access specific client information for business management.
Instructions
Get a specific customer by ID
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| id | Yes | Customer ID | 
Input Schema (JSON Schema)
{
  "properties": {
    "id": {
      "description": "Customer ID",
      "type": "string"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}