Skip to content

Commit

Permalink
Invoice: Fix number query string parameter name for getAll request
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeShakingSheep committed Jun 2, 2024
1 parent 16672bf commit 3c3e77b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ export class InvoiceNinja implements INodeType {
qs.include = options.include as string;
}
if (options.invoiceNumber) {
qs.invoice_number = options.invoiceNumber as string;
qs.number = options.invoiceNumber as string;
}
if (options.status) {
qs.status = options.status as string;
Expand Down

0 comments on commit 3c3e77b

Please sign in to comment.