Class: KlaviyoAPI::ReviewsApi
- Inherits:
-
Object
- Object
- KlaviyoAPI::ReviewsApi
- Defined in:
- lib/klaviyo-api-sdk/api/reviews_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#get_review(id, opts = {}) ⇒ Hash<String, Object>
Get Review Get the review with the given ID.
*Rate limits*:
Burst: ‘10/s`
Steady: `150/m` Scopes: `reviews:read`. -
#get_review_with_http_info(id, opts = {}) ⇒ Array<(Hash<String, Object>, Integer, Hash)>
Get Review Get the review with the given ID.<br><br>*Rate limits*:<br>Burst: `10/s`<br>Steady: `150/m` Scopes: `reviews:read`.
-
#get_reviews(opts = {}) ⇒ Hash<String, Object>
Get Reviews Get all reviews.
*Rate limits*:
Burst: ‘10/s`
Steady: `150/m` Scopes: `reviews:read`. -
#get_reviews_with_http_info(opts = {}) ⇒ Array<(Hash<String, Object>, Integer, Hash)>
Get Reviews Get all reviews.<br><br>*Rate limits*:<br>Burst: `10/s`<br>Steady: `150/m` Scopes: `reviews:read`.
-
#initialize(api_client = ApiClient.default) ⇒ ReviewsApi
constructor
A new instance of ReviewsApi.
-
#update_review(id, review_patch_query, opts = {}) ⇒ Hash<String, Object>
Update Review Update a review.
*Rate limits*:
Burst: ‘10/s`
Steady: `150/m` Scopes: `reviews:write`. -
#update_review_with_http_info(id, review_patch_query, opts = {}) ⇒ Array<(Hash<String, Object>, Integer, Hash)>
Update Review Update a review.<br><br>*Rate limits*:<br>Burst: `10/s`<br>Steady: `150/m` Scopes: `reviews:write`.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ ReviewsApi
Returns a new instance of ReviewsApi.
18 19 20 |
# File 'lib/klaviyo-api-sdk/api/reviews_api.rb', line 18 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
16 17 18 |
# File 'lib/klaviyo-api-sdk/api/reviews_api.rb', line 16 def api_client @api_client end |
Instance Method Details
#get_review(id, opts = {}) ⇒ Hash<String, Object>
Get Review Get the review with the given ID.
*Rate limits*:
Burst: ‘10/s`
Steady: `150/m` Scopes: `reviews:read`
29 30 31 32 |
# File 'lib/klaviyo-api-sdk/api/reviews_api.rb', line 29 def get_review(id, opts = {}) data, _status_code, _headers = get_review_with_http_info(id, opts) data end |
#get_review_with_http_info(id, opts = {}) ⇒ Array<(Hash<String, Object>, Integer, Hash)>
Get Review Get the review with the given ID.<br><br>*Rate limits*:<br>Burst: `10/s`<br>Steady: `150/m` Scopes: `reviews:read`
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/klaviyo-api-sdk/api/reviews_api.rb', line 42 def get_review_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: ReviewsApi.get_review ...' end # verify the required parameter 'id' is set if @api_client.config.client_side_validation && id.nil? fail ArgumentError, "Missing the required parameter 'id' when calling ReviewsApi.get_review" end allowable_values = ["timestamp", "event_properties", "datetime", "uuid"] if @api_client.config.client_side_validation && opts[:'fields_event'] && !opts[:'fields_event'].all? { |item| allowable_values.include?(item) } fail ArgumentError, "invalid value for \"fields_event\", must include one of #{allowable_values}" end allowable_values = ["email", "status", "status.value", "status.rejection_reason", "status.rejection_reason.reason", "status.rejection_reason.status_explanation", "verified", "review_type", "created", "updated", "images", "product", "product.url", "product.name", "product.image_url", "product.external_id", "rating", "author", "content", "title", "smart_quote", "public_reply", "public_reply.content", "public_reply.author", "public_reply.updated"] if @api_client.config.client_side_validation && opts[:'fields_review'] && !opts[:'fields_review'].all? { |item| allowable_values.include?(item) } fail ArgumentError, "invalid value for \"fields_review\", must include one of #{allowable_values}" end allowable_values = ["events"] if @api_client.config.client_side_validation && opts[:'include'] && !opts[:'include'].all? { |item| allowable_values.include?(item) } fail ArgumentError, "invalid value for \"include\", must include one of #{allowable_values}" end # resource path local_var_path = '/api/reviews/{id}'.sub('{' + 'id' + '}', CGI.escape(id.to_s)) # query parameters query_params = opts[:query_params] || {} query_params[:'fields[event]'] = @api_client.build_collection_param(opts[:'fields_event'], :csv) if !opts[:'fields_event'].nil? query_params[:'fields[review]'] = @api_client.build_collection_param(opts[:'fields_review'], :csv) if !opts[:'fields_review'].nil? query_params[:'include'] = @api_client.build_collection_param(opts[:'include'], :csv) if !opts[:'include'].nil? # header parameters header_params = opts[:header_params] || {} # klaviyo api revision header_params['revision'] = ENV['KLAVIYO_API_REVISION'] || ENV['API_REVISION'] || "2025-04-15" # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/vnd.api+json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'Hash<String, Object>' # auth_names auth_names = opts[:debug_auth_names] || ['Klaviyo-API-Key', 'OAuth'] = opts.merge( :operation => :"ReviewsApi.get_review", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: ReviewsApi#get_review\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_reviews(opts = {}) ⇒ Hash<String, Object>
Get Reviews Get all reviews.
*Rate limits*:
Burst: ‘10/s`
Steady: `150/m` Scopes: `reviews:read`
118 119 120 121 |
# File 'lib/klaviyo-api-sdk/api/reviews_api.rb', line 118 def get_reviews(opts = {}) data, _status_code, _headers = get_reviews_with_http_info(opts) data end |
#get_reviews_with_http_info(opts = {}) ⇒ Array<(Hash<String, Object>, Integer, Hash)>
Get Reviews Get all reviews.<br><br>*Rate limits*:<br>Burst: `10/s`<br>Steady: `150/m` Scopes: `reviews:read`
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
# File 'lib/klaviyo-api-sdk/api/reviews_api.rb', line 134 def get_reviews_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: ReviewsApi.get_reviews ...' end allowable_values = ["timestamp", "event_properties", "datetime", "uuid"] if @api_client.config.client_side_validation && opts[:'fields_event'] && !opts[:'fields_event'].all? { |item| allowable_values.include?(item) } fail ArgumentError, "invalid value for \"fields_event\", must include one of #{allowable_values}" end allowable_values = ["email", "status", "status.value", "status.rejection_reason", "status.rejection_reason.reason", "status.rejection_reason.status_explanation", "verified", "review_type", "created", "updated", "images", "product", "product.url", "product.name", "product.image_url", "product.external_id", "rating", "author", "content", "title", "smart_quote", "public_reply", "public_reply.content", "public_reply.author", "public_reply.updated"] if @api_client.config.client_side_validation && opts[:'fields_review'] && !opts[:'fields_review'].all? { |item| allowable_values.include?(item) } fail ArgumentError, "invalid value for \"fields_review\", must include one of #{allowable_values}" end allowable_values = ["events"] if @api_client.config.client_side_validation && opts[:'include'] && !opts[:'include'].all? { |item| allowable_values.include?(item) } fail ArgumentError, "invalid value for \"include\", must include one of #{allowable_values}" end if @api_client.config.client_side_validation && !opts[:'page_size'].nil? && opts[:'page_size'] > 100 fail ArgumentError, 'invalid value for "opts[:"page_size"]" when calling ReviewsApi.get_reviews, must be smaller than or equal to 100.' end if @api_client.config.client_side_validation && !opts[:'page_size'].nil? && opts[:'page_size'] < 1 fail ArgumentError, 'invalid value for "opts[:"page_size"]" when calling ReviewsApi.get_reviews, must be greater than or equal to 1.' end allowable_values = ["created", "-created", "rating", "-rating", "updated", "-updated"] if @api_client.config.client_side_validation && opts[:'sort'] && !allowable_values.include?(opts[:'sort']) fail ArgumentError, "invalid value for \"sort\", must be one of #{allowable_values}" end # resource path local_var_path = '/api/reviews' # query parameters query_params = opts[:query_params] || {} query_params[:'fields[event]'] = @api_client.build_collection_param(opts[:'fields_event'], :csv) if !opts[:'fields_event'].nil? query_params[:'fields[review]'] = @api_client.build_collection_param(opts[:'fields_review'], :csv) if !opts[:'fields_review'].nil? query_params[:'filter'] = opts[:'filter'] if !opts[:'filter'].nil? query_params[:'include'] = @api_client.build_collection_param(opts[:'include'], :csv) if !opts[:'include'].nil? query_params[:'page[cursor]'] = opts[:'page_cursor'] if !opts[:'page_cursor'].nil? query_params[:'page[size]'] = opts[:'page_size'] if !opts[:'page_size'].nil? query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil? # header parameters header_params = opts[:header_params] || {} # klaviyo api revision header_params['revision'] = ENV['KLAVIYO_API_REVISION'] || ENV['API_REVISION'] || "2025-04-15" # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/vnd.api+json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'Hash<String, Object>' # auth_names auth_names = opts[:debug_auth_names] || ['Klaviyo-API-Key', 'OAuth'] = opts.merge( :operation => :"ReviewsApi.get_reviews", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: ReviewsApi#get_reviews\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_review(id, review_patch_query, opts = {}) ⇒ Hash<String, Object>
Update Review Update a review.
*Rate limits*:
Burst: ‘10/s`
Steady: `150/m` Scopes: `reviews:write`
217 218 219 220 |
# File 'lib/klaviyo-api-sdk/api/reviews_api.rb', line 217 def update_review(id, review_patch_query, opts = {}) data, _status_code, _headers = update_review_with_http_info(id, review_patch_query, opts) data end |
#update_review_with_http_info(id, review_patch_query, opts = {}) ⇒ Array<(Hash<String, Object>, Integer, Hash)>
Update Review Update a review.<br><br>*Rate limits*:<br>Burst: `10/s`<br>Steady: `150/m` Scopes: `reviews:write`
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
# File 'lib/klaviyo-api-sdk/api/reviews_api.rb', line 228 def update_review_with_http_info(id, review_patch_query, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: ReviewsApi.update_review ...' end # verify the required parameter 'id' is set if @api_client.config.client_side_validation && id.nil? fail ArgumentError, "Missing the required parameter 'id' when calling ReviewsApi.update_review" end # verify the required parameter 'review_patch_query' is set if @api_client.config.client_side_validation && review_patch_query.nil? fail ArgumentError, "Missing the required parameter 'review_patch_query' when calling ReviewsApi.update_review" end # resource path local_var_path = '/api/reviews/{id}'.sub('{' + 'id' + '}', CGI.escape(id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # klaviyo api revision header_params['revision'] = ENV['KLAVIYO_API_REVISION'] || ENV['API_REVISION'] || "2025-04-15" # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/vnd.api+json']) # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/vnd.api+json']) if !content_type.nil? header_params['Content-Type'] = content_type end # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] || @api_client.object_to_http_body(review_patch_query) # return_type return_type = opts[:debug_return_type] || 'Hash<String, Object>' # auth_names auth_names = opts[:debug_auth_names] || ['Klaviyo-API-Key', 'OAuth'] = opts.merge( :operation => :"ReviewsApi.update_review", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: ReviewsApi#update_review\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |