class DocuSign_eSign::DiagnosticsApi

Attributes

api_client[RW]

Public Class Methods

new(api_client = DiagnosticsApi.default) click to toggle source
# File lib/docusign_esign/api/diagnostics_api.rb, line 29
def initialize(api_client = DiagnosticsApi.default)
  @api_client = api_client
end

Public Instance Methods

delete_request_logs() click to toggle source

Deletes the request log files. Deletes the request log files. @return [nil]

# File lib/docusign_esign/api/diagnostics_api.rb, line 36
def delete_request_logs()
  delete_request_logs_with_http_info()
  return nil
end
delete_request_logs_with_http_info() click to toggle source

Deletes the request log files. Deletes the request log files. @return [Array<(nil, Fixnum, Hash)>] nil, response status code and response headers

# File lib/docusign_esign/api/diagnostics_api.rb, line 44
def delete_request_logs_with_http_info()
  if @api_client.config.debugging
    @api_client.config.logger.debug "Calling API: DiagnosticsApi.delete_request_logs ..."
  end
  # resource path
  local_var_path = "/v2.1/diagnostics/request_logs".sub('{format}','json')

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = []
  data, status_code, headers = @api_client.call_api(:DELETE, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DiagnosticsApi#delete_request_logs\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
get_request_log(request_log_id) click to toggle source

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. @param request_log_id @return [File]

# 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
get_request_log_settings() click to toggle source

Gets the API request logging settings. Retrieves the current API request logging setting for the user and remaining log entries. Response The response includes the current API request logging setting for the user, along with the maximum log entries and remaining log entries. @return [DiagnosticsSettingsInformation]

# File lib/docusign_esign/api/diagnostics_api.rb, line 129
def get_request_log_settings()
  data, _status_code, _headers = get_request_log_settings_with_http_info()
  return data
end
get_request_log_settings_with_http_info() click to toggle source

Gets the API request logging settings. Retrieves the current API request logging setting for the user and remaining log entries. Response The response includes the current API request logging setting for the user, along with the maximum log entries and remaining log entries. @return [Array<(DiagnosticsSettingsInformation, Fixnum, Hash)>] DiagnosticsSettingsInformation data, response status code and response headers

# File lib/docusign_esign/api/diagnostics_api.rb, line 137
def get_request_log_settings_with_http_info()
  if @api_client.config.debugging
    @api_client.config.logger.debug "Calling API: DiagnosticsApi.get_request_log_settings ..."
  end
  # resource path
  local_var_path = "/v2.1/diagnostics/settings".sub('{format}','json')

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = []
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'DiagnosticsSettingsInformation')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DiagnosticsApi#get_request_log_settings\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
get_request_log_with_http_info(request_log_id) click to toggle source

Gets a request logging log file. Retrieves information for a single log entry. Request The &#x60;requestLogfId&#x60; 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. @param request_log_id @return [Array<(File, Fixnum, Hash)>] File data, response status code and response headers

# File lib/docusign_esign/api/diagnostics_api.rb, line 90
def get_request_log_with_http_info(request_log_id)
  if @api_client.config.debugging
    @api_client.config.logger.debug "Calling API: DiagnosticsApi.get_request_log ..."
  end
  # verify the required parameter 'request_log_id' is set
  fail ArgumentError, "Missing the required parameter 'request_log_id' when calling DiagnosticsApi.get_request_log" if request_log_id.nil?
  # resource path
  local_var_path = "/v2.1/diagnostics/request_logs/{requestLogId}".sub('{format}','json').sub('{' + 'requestLogId' + '}', request_log_id.to_s)

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['text/plain'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = []
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'File')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DiagnosticsApi#get_request_log\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
get_resources() click to toggle source

Lists resources for REST version specified Retrieves the base resources available for the DocuSign REST APIs. You do not need an integrator key to view the REST API versions and resources. Example: demo.docusign.net/restapi/v2 lists all of the base resources available in version 2 of the REST API on the DocuSign Demo system. To view descriptions and samples of the service operations for all versions, remove the version number and add /help to the URL. Example: demo.docusign.net/restapi/help lists the REST API operations on the DocuSign Demo system with XML and JSON request and response samples. @return [ResourceInformation]

# File lib/docusign_esign/api/diagnostics_api.rb, line 174
def get_resources()
  data, _status_code, _headers = get_resources_with_http_info()
  return data
end
get_resources_with_http_info() click to toggle source

Lists resources for REST version specified Retrieves the base resources available for the DocuSign REST APIs. You do not need an integrator key to view the REST API versions and resources. Example: demo.docusign.net/restapi/v2 lists all of the base resources available in version 2 of the REST API on the DocuSign Demo system. To view descriptions and samples of the service operations for all versions, remove the version number and add /help to the URL. Example: demo.docusign.net/restapi/help lists the REST API operations on the DocuSign Demo system with XML and JSON request and response samples. @return [Array<(ResourceInformation, Fixnum, Hash)>] ResourceInformation data, response status code and response headers

# File lib/docusign_esign/api/diagnostics_api.rb, line 182
def get_resources_with_http_info()
  if @api_client.config.debugging
    @api_client.config.logger.debug "Calling API: DiagnosticsApi.get_resources ..."
  end
  # resource path
  local_var_path = "/v2.1".sub('{format}','json')

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = []
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'ResourceInformation')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DiagnosticsApi#get_resources\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
get_service() click to toggle source

Retrieves the available REST API versions. Retrieves the available REST API versions. DocuSign Production system: www.docusign.net/restapi/service_information DocuSign Demo system: demo.docusign.net/restapi/service_information You do not need an integrator key to view the REST API versions and resources. @return [ServiceInformation]

# File lib/docusign_esign/api/diagnostics_api.rb, line 219
def get_service()
  data, _status_code, _headers = get_service_with_http_info()
  return data
end
get_service_with_http_info() click to toggle source

Retrieves the available REST API versions. Retrieves the available REST API versions. DocuSign Production system: www.docusign.net/restapi/service_information DocuSign Demo system: demo.docusign.net/restapi/service_information You do not need an integrator key to view the REST API versions and resources. @return [Array<(ServiceInformation, Fixnum, Hash)>] ServiceInformation data, response status code and response headers

# File lib/docusign_esign/api/diagnostics_api.rb, line 227
def get_service_with_http_info()
  if @api_client.config.debugging
    @api_client.config.logger.debug "Calling API: DiagnosticsApi.get_service ..."
  end
  # resource path
  local_var_path = "/service_information".sub('{format}','json')

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = []
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'ServiceInformation')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DiagnosticsApi#get_service\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
list_request_logs(options = DocuSign_eSign::ListRequestLogsOptions.default) click to toggle source

Gets the API request logging log files. Retrieves a list of log entries as a JSON or xml object or as a zip file containing the entries. If the Accept header is set to application/zip, the response is a zip file containing individual text files, each representing an API request. If the Accept header is set to ‘application/json` or `application/xml`, the response returns list of log entries in either JSON or XML. An example JSON response body is shown below. @param DocuSign_eSign::ListRequestLogsOptions Options for modifying the behavior of the function. @return [ApiRequestLogsResult]

# File lib/docusign_esign/api/diagnostics_api.rb, line 265
def list_request_logs(options = DocuSign_eSign::ListRequestLogsOptions.default)
  data, _status_code, _headers = list_request_logs_with_http_info(options)
  return data
end
list_request_logs_with_http_info(options = DocuSign_eSign::ListRequestLogsOptions.default) click to toggle source

Gets the API request logging log files. Retrieves a list of log entries as a JSON or xml object or as a zip file containing the entries. If the Accept header is set to application/zip, the response is a zip file containing individual text files, each representing an API request. If the Accept header is set to &#x60;application/json&#x60; or &#x60;application/xml&#x60;, the response returns list of log entries in either JSON or XML. An example JSON response body is shown below. @param DocuSign_eSign::ListRequestLogsOptions Options for modifying the behavior of the function. @return [Array<(ApiRequestLogsResult, Fixnum, Hash)>] ApiRequestLogsResult data, response status code and response headers

# File lib/docusign_esign/api/diagnostics_api.rb, line 274
def list_request_logs_with_http_info(options = DocuSign_eSign::ListRequestLogsOptions.default)
  if @api_client.config.debugging
    @api_client.config.logger.debug "Calling API: DiagnosticsApi.list_request_logs ..."
  end
  # resource path
  local_var_path = "/v2.1/diagnostics/request_logs".sub('{format}','json')

  # query parameters
  query_params = {}
  query_params[:'encoding'] = options.encoding if !options.encoding.nil?

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = nil
  auth_names = []
  data, status_code, headers = @api_client.call_api(:GET, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'ApiRequestLogsResult')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DiagnosticsApi#list_request_logs\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end
update_request_log_settings(diagnostics_settings_information) click to toggle source

Enables or disables API request logging for troubleshooting. Enables or disables API request logging for troubleshooting. When enabled (‘apiRequestLogging` is set to true), REST API requests and responses for the user are added to a log. A log can have up to 50 requests/responses and the current number of log entries can be determined by getting the settings. Logging is automatically disabled when the log limit of 50 is reached. You can call [ML:GetRequestLog] or [ML:GetRequestLogs] to download the log files (individually or as a zip file). Call [ML:DeleteRequestLogs] to clear the log by deleting current entries. Private information, such as passwords and integrator key information, which is normally located in the call header is omitted from the request/response log. ###### Note: API request logging only captures requests from the authenticated user. Any call that does not authenticate the user and resolve a userId isn’t logged. Meaning that login_information, NewAccounts, or other distributor-credential calls are not logged. @param diagnostics_settings_information (optional parameter) @return [DiagnosticsSettingsInformation]

# File lib/docusign_esign/api/diagnostics_api.rb, line 313
def update_request_log_settings(diagnostics_settings_information)
  data, _status_code, _headers = update_request_log_settings_with_http_info( diagnostics_settings_information)
  return data
end
update_request_log_settings_with_http_info(diagnostics_settings_information) click to toggle source

Enables or disables API request logging for troubleshooting. Enables or disables API request logging for troubleshooting. When enabled (&#x60;apiRequestLogging&#x60; is set to true), REST API requests and responses for the user are added to a log. A log can have up to 50 requests/responses and the current number of log entries can be determined by getting the settings. Logging is automatically disabled when the log limit of 50 is reached. You can call [ML:GetRequestLog] or [ML:GetRequestLogs] to download the log files (individually or as a zip file). Call [ML:DeleteRequestLogs] to clear the log by deleting current entries. Private information, such as passwords and integrator key information, which is normally located in the call header is omitted from the request/response log. ###### Note: API request logging only captures requests from the authenticated user. Any call that does not authenticate the user and resolve a userId isn&#39;t logged. Meaning that login_information, NewAccounts, or other distributor-credential calls are not logged. @param diagnostics_settings_information (optional parameter) @return [Array<(DiagnosticsSettingsInformation, Fixnum, Hash)>] DiagnosticsSettingsInformation data, response status code and response headers

# File lib/docusign_esign/api/diagnostics_api.rb, line 322
def update_request_log_settings_with_http_info(diagnostics_settings_information)
  if @api_client.config.debugging
    @api_client.config.logger.debug "Calling API: DiagnosticsApi.update_request_log_settings ..."
  end
  # resource path
  local_var_path = "/v2.1/diagnostics/settings".sub('{format}','json')

  # query parameters
  query_params = {}

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = {}

  # http body (model)
  post_body = @api_client.object_to_http_body(diagnostics_settings_information)
  auth_names = []
  data, status_code, headers = @api_client.call_api(:PUT, local_var_path,
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => 'DiagnosticsSettingsInformation')
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DiagnosticsApi#update_request_log_settings\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end