action docusign_billing_invoices_get_billing_invoices { label: "Get a List of Billing Invoices" description: "Retrieves a list of invoices for the account. If the from date or to date queries are not specified, the response returns invoices for the last 365 days.\n\nPrivileges required: account administrator " provider: docusign method: GET path: "/v2.1/accounts/{accountId}/billing_invoices" encoding: json input: { type: "object" properties: { accountId: { type: "string" } from_date: { type: "string" } to_date: { type: "string" } } required: ["accountId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }