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