module ScormEngine::Api::Endpoints::Ping

Public Instance Methods

get_ping() click to toggle source

Get back a message indicating that the API is working.

@see rustici-docs.s3.amazonaws.com/engine/2017.1.x/api.html#tenant__ping_get

@return [ScormEngine::Response]

# File lib/scorm_engine/api/endpoints/ping.rb, line 12
def get_ping
  response = get("ping")

  Response.new(raw_response: response)
end