Method: DocuSign_eSign::DiagnosticsApi#get_request_log
- Defined in:
- lib/docusign_esign/api/diagnostics_api.rb
#get_request_log(request_log_id) ⇒ File
Gets a request logging log file. Retrieves information for a single log entry. Request The ‘requestLogfId` 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. Response If the Content-Transfer-Encoding header was set to base64, the log is returned as a base64 string.
81 82 83 84 |
# File 'lib/docusign_esign/api/diagnostics_api.rb', line 81 def get_request_log(request_log_id) data, _status_code, _headers = get_request_log_with_http_info(request_log_id) return data end |