Method: Forms#get_forms

Defined in:
lib/user/content/forms.rb

#get_forms(options = nil) ⇒ Object

Get forms.

Get a collection of forms.

Parameters

options

(Hash) – List of Resource Collection Options shown above can be used as parameter.

First Example

@data = @mints_user.get_forms

Second Example

options = { sort: 'id', fields: 'title' }
@data = @mints_user.get_forms(options)


20
21
22
# File 'lib/user/content/forms.rb', line 20

def get_forms(options = nil)
  @client.raw('get', '/content/forms', options)
end