Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
service_monster / lib / service_monster / client / api_requests.rb
Size: Mime:
module ServiceMonster
  class Client
    module ApiRequests

      def start_authorization(app_id, request_id)
        response = get("apiRequests/#{app_id}/#{request_id}")
      end

      def complete_authorization(app_id, request_id)
        response = post("apiRequests", {appID: app_id, requestID: request_id})
      end
    end
  end
end