action docusign_apirequest_log_get_request_log { label: "Gets a request logging log file." description: "Retrieves information for a single log entry.\n\n**Request**\nThe `requestLogId` property can be retrieved by getting the list of log entries. The Content-Transfer-Encoding header can be set to base64 to retrieve the API request/response as base 64 string. Otherwise the bytes of the request/response are returned.\n\n**Response**\nIf the Content-Transfer-Encoding header was set to base64, the log is returned as a base64 string." provider: docusign method: GET path: "/v2.1/diagnostics/request_logs/{requestLogId}" encoding: json input: { type: "object" properties: { requestLogId: { type: "string" } } required: ["requestLogId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }