Class: MemoriClient::Engine::V2::CompletionLog

Inherits:
Resource show all
Defined in:
lib/memori_client/engine/v2/completion_log.rb

Overview

Generated on 2024-01-18 17:37:07 +0000

Class Method Summary collapse

Methods inherited from Resource

build_url

Methods inherited from Resource

build_arguments, build_url, exec_http_request, validate_payload!

Class Method Details

.list_memori_completion_logs(strMemoriID:, strDateFrom: nil, strDateTo: nil) ⇒ Object

GET /memori/v2/CompletionLogs/strMemoriID/strDateFrom/strDateTo Gets the Completion Log objects for the specified Memori in a specific date interval. Params list: list_memori_completion_logs(strMemoriID:, strDateFrom: nil, strDateTo: nil)

Parameters:

  • strMemoriID (string)

    The Memori object ID. required

  • strDateFrom (string) (defaults to: nil)

    The optional begin of the date interval, in UTC time, in the format yyyyMMdd. optional

  • strDateTo (string) (defaults to: nil)

    The optional end of the date interval, in UTC time, in the format yyyyMMdd. optional



10
11
12
13
14
# File 'lib/memori_client/engine/v2/completion_log.rb', line 10

def self.list_memori_completion_logs(strMemoriID:, strDateFrom: nil, strDateTo: nil)
  args = build_arguments(binding)

  exec_http_request('get', '/memori/v2/CompletionLogs/{strMemoriID}/{strDateFrom}/{strDateTo}', **args)
end