action xtrf_get_dates { label: "Returns dates of a given client invoice." description: "Returns dates of a given client invoice." provider: xtrf method: GET path: "/accounting/customers/invoices/{invoiceId}/dates" encoding: json input: { type: "object" properties: { invoiceId: { type: "integer" format: "int64" } } required: ["invoiceId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }