action docusign_billing_charges_get_account_billing_charges { label: "Gets list of recurring and usage charges for the account." description: "Retrieves the list of recurring and usage charges for the account. This can be used to determine the charge structure and usage of charge plan items. \n\nPrivileges required: account administrator " provider: docusign method: GET path: "/v2.1/accounts/{accountId}/billing_charges" encoding: json input: { type: "object" properties: { accountId: { type: "string" } include_charges: { type: "string" } } required: ["accountId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }