Class: Ashby::Feedback

Inherits:
Client
  • Object
show all
Defined in:
lib/ashby/feedback.rb

Overview

Ashby::Feedback provides access to feedback-related operations via the Ashby API.

Supported functionality includes:

- Retrieving a paginated list of all feedback

Example usage:

Ashby::Feedback.all

Constant Summary

Constants inherited from Client

Client::API_URL

Class Method Summary collapse

Methods inherited from Client

build_url, headers, paginated_post, post

Class Method Details

.all(payload = {}) ⇒ Object

Fetches all feedback with pagination support



13
14
15
# File 'lib/ashby/feedback.rb', line 13

def self.all(payload = {})
  paginated_post('applicationFeedback.list', payload)
end