Method: Pages#get_page
- Defined in:
- lib/user/content/pages.rb
#get_page(id) ⇒ Object
Get page.
Get a content page.
Parameters
- id
-
(Integer) – Page id.
Example
@data = @mints_user.get_page(1)
33 34 35 |
# File 'lib/user/content/pages.rb', line 33 def get_page(id) return @client.raw("get", "/content/pages/#{id}") end |