Method: Novu::Api::Changes#changes

Defined in:
lib/novu/api/changes.rb

#changes(query = {}) ⇒ Hash, number

Returns a list of changes that can be paginated using the ‘page` query parameter

@queryparams:

Parameters:

  • `page` (Integer(optional))

    Number of page for the pagination.

  • `limit` (Integer(optional))
  • `promoted` (String)

Returns:

  • (Hash)

    The list of changes that match the criteria of the query params are successfully returned.

  • (number)

    status

    • Returns 200 if successful



21
22
23
# File 'lib/novu/api/changes.rb', line 21

def changes(query = {})
  get("/changes", query: query)
end