Class: GoCardlessPro::Services::BillingRequestsService
- Inherits:
-
BaseService
- Object
- BaseService
- GoCardlessPro::Services::BillingRequestsService
- Defined in:
- lib/gocardless_pro/services/billing_requests_service.rb
Overview
Service for making requests to the BillingRequest endpoints
Instance Method Summary collapse
-
#all(options = {}) ⇒ Object
Get a lazily enumerated list of all the items returned.
-
#cancel(identity, options = {}) ⇒ Object
Immediately cancels a billing request, causing all billing request flows to expire.
-
#choose_currency(identity, options = {}) ⇒ Object
This will allow for the updating of the currency and subsequently the scheme if needed for a Billing Request.
-
#collect_bank_account(identity, options = {}) ⇒ Object
If the billing request has a pending
collect_bank_accountaction, this endpoint can be used to collect the details in order to complete it. -
#collect_customer_details(identity, options = {}) ⇒ Object
If the billing request has a pending
collect_customer_detailsaction, this endpoint can be used to collect the details in order to complete it. -
#confirm_payer_details(identity, options = {}) ⇒ Object
This is needed when you have a mandate request.
-
#create(options = {}) ⇒ Object
Example URL: /billing_requests.
-
#fallback(identity, options = {}) ⇒ Object
Triggers a fallback from the open-banking flow to direct debit.
-
#fulfil(identity, options = {}) ⇒ Object
If a billing request is ready to be fulfilled, call this endpoint to cause it to fulfil, executing the payment.
-
#get(identity, options = {}) ⇒ Object
Fetches a billing request Example URL: /billing_requests/:identity.
-
#list(options = {}) ⇒ Object
Returns a [cursor-paginated](#api-usage-cursor-pagination) list of your billing requests.
-
#notify(identity, options = {}) ⇒ Object
Notifies the customer linked to the billing request, asking them to authorise it.
Methods inherited from BaseService
#initialize, #make_request, #sub_url
Constructor Details
This class inherits a constructor from GoCardlessPro::Services::BaseService
Instance Method Details
#all(options = {}) ⇒ Object
Get a lazily enumerated list of all the items returned. This is similar to the list method but will paginate for you automatically.
Otherwise they will be the body of the request.
35 36 37 38 39 40 |
# File 'lib/gocardless_pro/services/billing_requests_service.rb', line 35 def all( = {}) Paginator.new( service: self, options: ).enumerator end |
#cancel(identity, options = {}) ⇒ Object
Immediately cancels a billing request, causing all billing request flows to expire. Example URL: /billing_requests/:identity/actions/cancel
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/gocardless_pro/services/billing_requests_service.rb', line 327 def cancel(identity, = {}) path = sub_url('/billing_requests/:identity/actions/cancel', { 'identity' => identity, }) params = .delete(:params) || {} [:params] = {} [:params]['data'] = params [:retry_failures] = false begin response = make_request(:post, path, ) # Response doesn't raise any errors until #body is called response.tap(&:body) rescue InvalidStateError => e if e.idempotent_creation_conflict? case @api_service.on_idempotency_conflict when :raise raise IdempotencyConflict, e.error when :fetch return get(e.conflicting_resource_id) end end raise e end return if response.body.nil? Resources::BillingRequest.new(unenvelope_body(response.body), response) end |
#choose_currency(identity, options = {}) ⇒ Object
This will allow for the updating of the currency and subsequently the scheme if needed for a Billing Request. This will only be available for mandate only flows which do not have the lock_currency flag set to true on the Billing Request Flow. It will also not support any request which has a payments request. Example URL: /billing_requests/:identity/actions/choose_currency
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/gocardless_pro/services/billing_requests_service.rb', line 246 def choose_currency(identity, = {}) path = sub_url('/billing_requests/:identity/actions/choose_currency', { 'identity' => identity, }) params = .delete(:params) || {} [:params] = {} [:params]['data'] = params [:retry_failures] = false begin response = make_request(:post, path, ) # Response doesn't raise any errors until #body is called response.tap(&:body) rescue InvalidStateError => e if e.idempotent_creation_conflict? case @api_service.on_idempotency_conflict when :raise raise IdempotencyConflict, e.error when :fetch return get(e.conflicting_resource_id) end end raise e end return if response.body.nil? Resources::BillingRequest.new(unenvelope_body(response.body), response) end |
#collect_bank_account(identity, options = {}) ⇒ Object
If the billing request has a pending collect_bank_account action, this endpoint can be used to collect the details in order to complete it.
The endpoint takes the same payload as Customer Bank Accounts, but check the bank account is valid for the billing request scheme before creating and attaching it.
_ACH scheme_ For compliance reasons, an extra validation step is done using a third-party provider to make sure the customer’s bank account can accept Direct Debit. If a bank account is discovered to be closed or invalid, the customer is requested to adjust the account number/routing number and succeed in this check to continue with the flow. Example URL: /billing_requests/:identity/actions/collect_bank_account
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 |
# File 'lib/gocardless_pro/services/billing_requests_service.rb', line 161 def collect_bank_account(identity, = {}) path = sub_url('/billing_requests/:identity/actions/collect_bank_account', { 'identity' => identity, }) params = .delete(:params) || {} [:params] = {} [:params]['data'] = params [:retry_failures] = false begin response = make_request(:post, path, ) # Response doesn't raise any errors until #body is called response.tap(&:body) rescue InvalidStateError => e if e.idempotent_creation_conflict? case @api_service.on_idempotency_conflict when :raise raise IdempotencyConflict, e.error when :fetch return get(e.conflicting_resource_id) end end raise e end return if response.body.nil? Resources::BillingRequest.new(unenvelope_body(response.body), response) end |
#collect_customer_details(identity, options = {}) ⇒ Object
If the billing request has a pending collect_customer_details action, this endpoint can be used to collect the details in order to complete it.
The endpoint takes the same payload as Customers, but checks that the customer fields are populated correctly for the billing request scheme.
Whatever is provided to this endpoint is used to update the referenced customer, and will take effect immediately after the request is successful. Example URL: /billing_requests/:identity/actions/collect_customer_details
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
# File 'lib/gocardless_pro/services/billing_requests_service.rb', line 110 def collect_customer_details(identity, = {}) path = sub_url('/billing_requests/:identity/actions/collect_customer_details', { 'identity' => identity, }) params = .delete(:params) || {} [:params] = {} [:params]['data'] = params [:retry_failures] = false begin response = make_request(:post, path, ) # Response doesn't raise any errors until #body is called response.tap(&:body) rescue InvalidStateError => e if e.idempotent_creation_conflict? case @api_service.on_idempotency_conflict when :raise raise IdempotencyConflict, e.error when :fetch return get(e.conflicting_resource_id) end end raise e end return if response.body.nil? Resources::BillingRequest.new(unenvelope_body(response.body), response) end |
#confirm_payer_details(identity, options = {}) ⇒ Object
This is needed when you have a mandate request. As a scheme compliance rule we are required to allow the payer to crosscheck the details entered by them and confirm it. Example URL: /billing_requests/:identity/actions/confirm_payer_details
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
# File 'lib/gocardless_pro/services/billing_requests_service.rb', line 287 def confirm_payer_details(identity, = {}) path = sub_url('/billing_requests/:identity/actions/confirm_payer_details', { 'identity' => identity, }) params = .delete(:params) || {} [:params] = {} [:params]['data'] = params [:retry_failures] = false begin response = make_request(:post, path, ) # Response doesn't raise any errors until #body is called response.tap(&:body) rescue InvalidStateError => e if e.idempotent_creation_conflict? case @api_service.on_idempotency_conflict when :raise raise IdempotencyConflict, e.error when :fetch return get(e.conflicting_resource_id) end end raise e end return if response.body.nil? Resources::BillingRequest.new(unenvelope_body(response.body), response) end |
#create(options = {}) ⇒ Object
Example URL: /billing_requests
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 |
# File 'lib/gocardless_pro/services/billing_requests_service.rb', line 45 def create( = {}) path = '/billing_requests' params = .delete(:params) || {} [:params] = {} [:params][envelope_key] = params [:retry_failures] = true begin response = make_request(:post, path, ) # Response doesn't raise any errors until #body is called response.tap(&:body) rescue InvalidStateError => e if e.idempotent_creation_conflict? case @api_service.on_idempotency_conflict when :raise raise IdempotencyConflict, e.error when :fetch return get(e.conflicting_resource_id) end end raise e end return if response.body.nil? Resources::BillingRequest.new(unenvelope_body(response.body), response) end |
#fallback(identity, options = {}) ⇒ Object
Triggers a fallback from the open-banking flow to direct debit. Note, the billing request must have fallback enabled. Example URL: /billing_requests/:identity/actions/fallback
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 |
# File 'lib/gocardless_pro/services/billing_requests_service.rb', line 408 def fallback(identity, = {}) path = sub_url('/billing_requests/:identity/actions/fallback', { 'identity' => identity, }) params = .delete(:params) || {} [:params] = {} [:params]['data'] = params [:retry_failures] = false begin response = make_request(:post, path, ) # Response doesn't raise any errors until #body is called response.tap(&:body) rescue InvalidStateError => e if e.idempotent_creation_conflict? case @api_service.on_idempotency_conflict when :raise raise IdempotencyConflict, e.error when :fetch return get(e.conflicting_resource_id) end end raise e end return if response.body.nil? Resources::BillingRequest.new(unenvelope_body(response.body), response) end |
#fulfil(identity, options = {}) ⇒ Object
If a billing request is ready to be fulfilled, call this endpoint to cause it to fulfil, executing the payment. Example URL: /billing_requests/:identity/actions/fulfil
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 |
# File 'lib/gocardless_pro/services/billing_requests_service.rb', line 201 def fulfil(identity, = {}) path = sub_url('/billing_requests/:identity/actions/fulfil', { 'identity' => identity, }) params = .delete(:params) || {} [:params] = {} [:params]['data'] = params [:retry_failures] = false begin response = make_request(:post, path, ) # Response doesn't raise any errors until #body is called response.tap(&:body) rescue InvalidStateError => e if e.idempotent_creation_conflict? case @api_service.on_idempotency_conflict when :raise raise IdempotencyConflict, e.error when :fetch return get(e.conflicting_resource_id) end end raise e end return if response.body.nil? Resources::BillingRequest.new(unenvelope_body(response.body), response) end |
#get(identity, options = {}) ⇒ Object
Fetches a billing request Example URL: /billing_requests/:identity
82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/gocardless_pro/services/billing_requests_service.rb', line 82 def get(identity, = {}) path = sub_url('/billing_requests/:identity', { 'identity' => identity, }) [:retry_failures] = true response = make_request(:get, path, ) return if response.body.nil? Resources::BillingRequest.new(unenvelope_body(response.body), response) end |
#list(options = {}) ⇒ Object
Returns a [cursor-paginated](#api-usage-cursor-pagination) list of your billing requests. Example URL: /billing_requests
17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/gocardless_pro/services/billing_requests_service.rb', line 17 def list( = {}) path = '/billing_requests' [:retry_failures] = true response = make_request(:get, path, ) ListResponse.new( response: response, unenveloped_body: unenvelope_body(response.body), resource_class: Resources::BillingRequest ) end |
#notify(identity, options = {}) ⇒ Object
Notifies the customer linked to the billing request, asking them to authorise it. Currently, the customer can only be notified by email. Example URL: /billing_requests/:identity/actions/notify
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 |
# File 'lib/gocardless_pro/services/billing_requests_service.rb', line 368 def notify(identity, = {}) path = sub_url('/billing_requests/:identity/actions/notify', { 'identity' => identity, }) params = .delete(:params) || {} [:params] = {} [:params]['data'] = params [:retry_failures] = false begin response = make_request(:post, path, ) # Response doesn't raise any errors until #body is called response.tap(&:body) rescue InvalidStateError => e if e.idempotent_creation_conflict? case @api_service.on_idempotency_conflict when :raise raise IdempotencyConflict, e.error when :fetch return get(e.conflicting_resource_id) end end raise e end return if response.body.nil? Resources::BillingRequest.new(unenvelope_body(response.body), response) end |