action docusign_connect_log_get_connect_log { label: "Gets a Connect log entry." description: "Retrieves the specified Connect log entry 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.\nIf logging is not enabled, then no log entries are recorded.\n" provider: docusign method: GET path: "/v2.1/accounts/{accountId}/connect/logs/{logId}" encoding: json input: { type: "object" properties: { accountId: { type: "string" } additional_info: { type: "string" } logId: { type: "string" } } required: ["accountId", "logId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }