action docusign_connect_log_get_connect_logs { label: "Gets the Connect log." description: "Retrieves a list of the 100 most recent Connect log entries for your account.\n\n\nTo use this method, you must be an account administrator\nand Connect must be enabled on your account.\n\n\nThe `enableLog` setting in the Connect configuration must be set to **true** to enable logging. Log entries are deleted after 15 days.\n\n" provider: docusign method: GET path: "/v2.1/accounts/{accountId}/connect/logs" 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 } }