invoicing_getInvoiceSettlementsForInvoice

READ

Get invoice settlements for invoice.

Parameters

sideenumrequired
invoiceIdstringrequired

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "invoicing_getInvoiceSettlementsForInvoice",
  "arguments": {
    "side": "string",
    "invoiceId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "side": {
      "type": "string",
      "enum": [
        "sales",
        "purchase"
      ]
    },
    "invoiceId": {
      "type": "string"
    }
  },
  "required": [
    "side",
    "invoiceId"
  ]
}