Class: SendGridWebApi::Modules::Bounce

Inherits:
Client
  • Object
show all
Defined in:
lib/web_api/bounces.rb

Constant Summary collapse

BOUNCES_URL =
"suppression/bounces"

Instance Attribute Summary

Attributes inherited from Base

#api_key

Instance Method Summary collapse

Methods included from SendGridWebApi::Modules

#apikey, #blocks, #bounces, #event_notification, #invalid_emails, #mail, #parse_email, #profile, #spam, #stats, #sub_user, #unsubscribes

Methods inherited from Base

#builder_options, #initialize, #make_request_url, #query_api, #query_delete_api, #query_patch_api, #query_post_api, #query_post_json_api, #session, #to_query

Constructor Details

This class inherits a constructor from SendGridWebApi::Base

Instance Method Details

#base_urlObject



5
6
7
# File 'lib/web_api/bounces.rb', line 5

def base_url
  "https://api.sendgrid.com/v3/"
end

#count(options = {}) ⇒ Object

Deprecated: Count is no longer supported on SendGrid v3. As an alternative, SendGrid recommends to query depending on time frames since ‘get` limit is 500.



26
27
28
29
# File 'lib/web_api/bounces.rb', line 26

def count options = {}
  count = query_api(BOUNCES_URL, process_header_options(options)).count
  {count: count}
end

#delete(options = {}) ⇒ Object

This method will delete all bounces from the given email.



18
19
20
21
22
# File 'lib/web_api/bounces.rb', line 18

def delete options = {}
  delete_url = BOUNCES_URL+"/#{options[:email]}"
  options.delete(:email)
  query_delete_api(delete_url, process_header_options(options))
end

#get(options = {}) ⇒ Object

Retrieve all of your bounces. A maximum of 500 bounces will be returned per query. You can use the offset and limit parameters to retrieve more or less than 500 results. You can use the start_time and end_time parameters to filter by time frames.



13
14
15
# File 'lib/web_api/bounces.rb', line 13

def get options = {}
  query_api(BOUNCES_URL, process_header_options(options))
end