Class: SibApiV3Sdk::TransactionalSMSApi
- Inherits:
-
Object
- Object
- SibApiV3Sdk::TransactionalSMSApi
- Defined in:
- lib/sib-api-v3-sdk/api/transactional_sms_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#get_sms_events(opts = {}) ⇒ GetSmsEventReport
Get all the SMS activity (unaggregated events).
-
#get_sms_events_with_http_info(opts = {}) ⇒ Array<(GetSmsEventReport, Fixnum, Hash)>
Get all the SMS activity (unaggregated events).
-
#get_transac_aggregated_sms_report(opts = {}) ⇒ GetTransacAggregatedSmsReport
Get your SMS activity aggregated over a period of time.
-
#get_transac_aggregated_sms_report_with_http_info(opts = {}) ⇒ Array<(GetTransacAggregatedSmsReport, Fixnum, Hash)>
Get your SMS activity aggregated over a period of time.
-
#get_transac_sms_report(opts = {}) ⇒ GetTransacSmsReport
Get your SMS activity aggregated per day.
-
#get_transac_sms_report_with_http_info(opts = {}) ⇒ Array<(GetTransacSmsReport, Fixnum, Hash)>
Get your SMS activity aggregated per day.
-
#initialize(api_client = ApiClient.default) ⇒ TransactionalSMSApi
constructor
A new instance of TransactionalSMSApi.
-
#send_transac_sms(send_transac_sms, opts = {}) ⇒ SendSms
Send the SMS campaign to the specified mobile number.
-
#send_transac_sms_with_http_info(send_transac_sms, opts = {}) ⇒ Array<(SendSms, Fixnum, Hash)>
Send the SMS campaign to the specified mobile number.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ TransactionalSMSApi
Returns a new instance of TransactionalSMSApi.
19 20 21 |
# File 'lib/sib-api-v3-sdk/api/transactional_sms_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/sib-api-v3-sdk/api/transactional_sms_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#get_sms_events(opts = {}) ⇒ GetSmsEventReport
Get all the SMS activity (unaggregated events)
35 36 37 38 |
# File 'lib/sib-api-v3-sdk/api/transactional_sms_api.rb', line 35 def get_sms_events(opts = {}) data, _status_code, _headers = get_sms_events_with_http_info(opts) return data end |
#get_sms_events_with_http_info(opts = {}) ⇒ Array<(GetSmsEventReport, Fixnum, Hash)>
Get all the SMS activity (unaggregated events)
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 |
# File 'lib/sib-api-v3-sdk/api/transactional_sms_api.rb', line 52 def get_sms_events_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: TransactionalSMSApi.get_sms_events ..." end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 100 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling TransactionalSMSApi.get_sms_events, must be smaller than or equal to 100.' end if @api_client.config.client_side_validation && opts[:'event'] && !['bounces', 'hardBounces', 'softBounces', 'delivered', 'sent', 'accepted', 'unsubscription', 'replies', 'blocked'].include?(opts[:'event']) fail ArgumentError, 'invalid value for "event", must be one of bounces, hardBounces, softBounces, delivered, sent, accepted, unsubscription, replies, blocked' end # resource path local_var_path = "/transactionalSMS/statistics/events" # query parameters query_params = {} query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? query_params[:'startDate'] = opts[:'start_date'] if !opts[:'start_date'].nil? query_params[:'endDate'] = opts[:'end_date'] if !opts[:'end_date'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? query_params[:'days'] = opts[:'days'] if !opts[:'days'].nil? query_params[:'phoneNumber'] = opts[:'phone_number'] if !opts[:'phone_number'].nil? query_params[:'event'] = opts[:'event'] if !opts[:'event'].nil? query_params[:'tags'] = opts[:'tags'] if !opts[:'tags'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['api-key'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'GetSmsEventReport') if @api_client.config.debugging @api_client.config.logger.debug "API called: TransactionalSMSApi#get_sms_events\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_transac_aggregated_sms_report(opts = {}) ⇒ GetTransacAggregatedSmsReport
Get your SMS activity aggregated over a period of time
111 112 113 114 |
# File 'lib/sib-api-v3-sdk/api/transactional_sms_api.rb', line 111 def get_transac_aggregated_sms_report(opts = {}) data, _status_code, _headers = get_transac_aggregated_sms_report_with_http_info(opts) return data end |
#get_transac_aggregated_sms_report_with_http_info(opts = {}) ⇒ Array<(GetTransacAggregatedSmsReport, Fixnum, Hash)>
Get your SMS activity aggregated over a period of time
124 125 126 127 128 129 130 131 132 133 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 |
# File 'lib/sib-api-v3-sdk/api/transactional_sms_api.rb', line 124 def get_transac_aggregated_sms_report_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: TransactionalSMSApi.get_transac_aggregated_sms_report ..." end # resource path local_var_path = "/transactionalSMS/statistics/aggregatedReport" # query parameters query_params = {} query_params[:'startDate'] = opts[:'start_date'] if !opts[:'start_date'].nil? query_params[:'endDate'] = opts[:'end_date'] if !opts[:'end_date'].nil? query_params[:'days'] = opts[:'days'] if !opts[:'days'].nil? query_params[:'tag'] = opts[:'tag'] if !opts[:'tag'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['api-key'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'GetTransacAggregatedSmsReport') if @api_client.config.debugging @api_client.config.logger.debug "API called: TransactionalSMSApi#get_transac_aggregated_sms_report\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_transac_sms_report(opts = {}) ⇒ GetTransacSmsReport
Get your SMS activity aggregated per day
172 173 174 175 |
# File 'lib/sib-api-v3-sdk/api/transactional_sms_api.rb', line 172 def get_transac_sms_report(opts = {}) data, _status_code, _headers = get_transac_sms_report_with_http_info(opts) return data end |
#get_transac_sms_report_with_http_info(opts = {}) ⇒ Array<(GetTransacSmsReport, Fixnum, Hash)>
Get your SMS activity aggregated per day
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 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'lib/sib-api-v3-sdk/api/transactional_sms_api.rb', line 185 def get_transac_sms_report_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: TransactionalSMSApi.get_transac_sms_report ..." end # resource path local_var_path = "/transactionalSMS/statistics/reports" # query parameters query_params = {} query_params[:'startDate'] = opts[:'start_date'] if !opts[:'start_date'].nil? query_params[:'endDate'] = opts[:'end_date'] if !opts[:'end_date'].nil? query_params[:'days'] = opts[:'days'] if !opts[:'days'].nil? query_params[:'tag'] = opts[:'tag'] if !opts[:'tag'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['api-key'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'GetTransacSmsReport') if @api_client.config.debugging @api_client.config.logger.debug "API called: TransactionalSMSApi#get_transac_sms_report\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#send_transac_sms(send_transac_sms, opts = {}) ⇒ SendSms
Send the SMS campaign to the specified mobile number
230 231 232 233 |
# File 'lib/sib-api-v3-sdk/api/transactional_sms_api.rb', line 230 def send_transac_sms(send_transac_sms, opts = {}) data, _status_code, _headers = send_transac_sms_with_http_info(send_transac_sms, opts) return data end |
#send_transac_sms_with_http_info(send_transac_sms, opts = {}) ⇒ Array<(SendSms, Fixnum, Hash)>
Send the SMS campaign to the specified mobile number
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 |
# File 'lib/sib-api-v3-sdk/api/transactional_sms_api.rb', line 240 def send_transac_sms_with_http_info(send_transac_sms, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: TransactionalSMSApi.send_transac_sms ..." end # verify the required parameter 'send_transac_sms' is set if @api_client.config.client_side_validation && send_transac_sms.nil? fail ArgumentError, "Missing the required parameter 'send_transac_sms' when calling TransactionalSMSApi.send_transac_sms" end # resource path local_var_path = "/transactionalSMS/sms" # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(send_transac_sms) auth_names = ['api-key'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'SendSms') if @api_client.config.debugging @api_client.config.logger.debug "API called: TransactionalSMSApi#send_transac_sms\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |