class EbanqApi::News

This class represents an news functional of Ebanq REST Api.

Public Class Methods

new(client) click to toggle source

Declares an client instance.

# File lib/ebanq_api/blocks/news.rb, line 13
def initialize(client)
  @client = client
end

Public Instance Methods

list(options = {}) click to toggle source

List of all News entries /api/v1/news

Attributes

  • options - hash of options for request, e.g. {page: 1}

    • page - Page number. (Number)

Examples

client.news.list
# File lib/ebanq_api/blocks/news.rb, line 42
def list(options = {})
  @client.make_request :get, news_path, options
end
show(id) click to toggle source

Retrieve News entry /api/v1/news/{id}

Attributes

  • id (required) - the ID of the news to retrieve. (Number)

Examples

client.news.show(5)
# File lib/ebanq_api/blocks/news.rb, line 27
def show(id)
  @client.make_request :get, news_path(id)
end