module Catalogcat class Client < Footrest::Client module Orders def get_order(id, params = {}) get("api/v1/orders/#{id}", params) end end end end