Method: Clayful::Collection.get
- Defined in:
- lib/models/collection.rb
.get(*args) ⇒ Object
68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/models/collection.rb', line 68 def self.get(*args) Clayful.call_api({ 'model_name' => @@name, 'method_name' => 'get', 'http_method' => 'GET', 'path' => '/v1/collections/{collectionId}', 'params' => ['collectionId', ], 'args' => args }) end |