action docusign_billing_payments_get_payment_list { label: "Gets payment information for one or more payments." description: "Retrieves a list containing information about one or more payments. If the from date or to date queries are not used, the response returns payment information for the last 365 days. \n\nPrivileges required: account administrator " provider: docusign method: GET path: "/v2.1/accounts/{accountId}/billing_payments" 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 } }