-
Notifications
You must be signed in to change notification settings - Fork 1
/
payment_profiles_controller.go
660 lines (625 loc) · 33.1 KB
/
payment_profiles_controller.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
106
107
108
109
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
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
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
286
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
320
321
322
323
324
325
326
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
360
361
362
363
364
365
366
367
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
401
402
403
404
405
406
407
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
/*
Package advancedbilling
This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
package advancedbilling
import (
"context"
"fmt"
"github.com/apimatic/go-core-runtime/https"
"github.com/apimatic/go-core-runtime/utilities"
"github.com/maxio-com/ab-golang-sdk/errors"
"github.com/maxio-com/ab-golang-sdk/models"
"net/http"
)
// PaymentProfilesController represents a controller struct.
type PaymentProfilesController struct {
baseController
}
// NewPaymentProfilesController creates a new instance of PaymentProfilesController.
// It takes a baseController as a parameter and returns a pointer to the PaymentProfilesController.
func NewPaymentProfilesController(baseController baseController) *PaymentProfilesController {
paymentProfilesController := PaymentProfilesController{baseController: baseController}
return &paymentProfilesController
}
// CreatePaymentProfile takes context, body as parameters and
// returns an models.ApiResponse with models.PaymentProfileResponse data and
// an error if there was an issue with the request or response.
// Use this endpoint to create a payment profile for a customer.
// Payment Profiles house the credit card, ACH (Authorize.Net or Stripe only,) or PayPal (Braintree only,) data for a customer. The payment information is attached to the customer within Advanced Billing, as opposed to the Subscription itself.
// You must include a customer_id so that Advanced Billing will attach it to the customer entry. If no customer_id is included the API will return a 404.
// ## Create a Payment Profile for ACH usage
// If you would like to create a payment method that is a Bank Account applicable for ACH payments use the following:
// ```json
// {
// "payment_profile": {
// "customer_id": [Valid-Customer-ID],
// "bank_name": "Best Bank",
// "bank_routing_number": "021000089",
// "bank_account_number": "111111111111",
// "bank_account_type": "checking",
// "bank_account_holder_type": "business",
// "payment_type": "bank_account"
// }
// }
// ```
// ## Taxable Subscriptions
// If your subscriber pays taxes on their purchased product, and you are attempting to create or update the `payment_profile`, complete address information is required. For information on required address formatting to allow your subscriber to be taxed, please see our documentation [here](https://developers.chargify.com/docs/developer-docs/d2e9e34db740e-signups#taxes)
// ## Payment Profile Documentation
// Full documentation on how Payment Profiles operate within Advanced Billing can be located under the following links:
// + [Subscriber Payment Details](https://maxio.zendesk.com/hc/en-us/articles/24251599929613-Subscription-Summary-Payment-Details-Tab)
// + [Self Service Pages](https://maxio.zendesk.com/hc/en-us/articles/24261425318541-Self-Service-Pages) (Allows credit card updates by Subscriber)
// + [Public Signup Pages payment settings](https://maxio.zendesk.com/hc/en-us/articles/24261368332557-Individual-Page-Settings)
// ## Create a Payment Profile with a Chargify.js token
// ```json
// {
// "payment_profile": {
// "customer_id": 1036,
// "chargify_token": "tok_w68qcpnftyv53jk33jv6wk3w"
// }
// }
// ```
// ## Active Payment Methods
// Creating a new payment profile for a Customer via the API will not make that Payment Profile current for any of the Customer’s Subscriptions. In order to utilize the payment profile as the default, it must be set as the default payment profile for the subscription or subscription group.
// ## Requirements
// Either the full_number, expiration_month, and expiration_year or if you have an existing vault_token from your gateway, that vault_token and the current_vault are required.
// Passing in the vault_token and current_vault are only allowed when creating a new payment profile.
// ### Taxable Subscriptions
// If your subscriber pays taxes on their purchased product, and you are attempting to create or update the `payment_profile`, complete address information is required. For information on required address formatting to allow your subscriber to be taxed, please see our documentation [here](https://developers.chargify.com/docs/developer-docs/d2e9e34db740e-signups#taxes)
// ## BraintreeBlue
// Some merchants use Braintree JavaScript libraries directly and then pass `payment_method_nonce` and/or `paypal_email` to create a payment profile. This implementation is deprecated and does not handle 3D Secure. Instead, we have provided [Chargify.js](https://developers.chargify.com/docs/developer-docs/ZG9jOjE0NjAzNDI0-overview) which is continuously improved and supports Credit Cards (along with 3D Secure), PayPal and ApplePay payment types.
// ## GoCardless
// For more information on GoCardless, please view the following resources:
// + [Full documentation on GoCardless](https://maxio.zendesk.com/hc/en-us/articles/24176159136909-GoCardless)
// + [Using Chargify.js with GoCardless - minimal example](https://developers.chargify.com/docs/developer-docs/ZG9jOjE0NjAzNDIy-examples#minimal-example-with-direct-debit-gocardless-gateway)
// + [Using Chargify.js with GoCardless - full example](https://developers.chargify.com/docs/developer-docs/ZG9jOjE0NjAzNDIy-examples#full-example-with-direct-debit-gocardless-gateway)
// ### GoCardless with Local Bank Details
// Following examples create customer, bank account and mandate in GoCardless:
// ```json
// {
// "payment_profile": {
// "customer_id": "Valid-Customer-ID",
// "bank_name": "Royal Bank of France",
// "bank_account_number": "0000000",
// "bank_routing_number": "0003",
// "bank_branch_code": "00006",
// "payment_type": "bank_account",
// "billing_address": "20 Place de la Gare",
// "billing_city": "Colombes",
// "billing_state": "Île-de-France",
// "billing_zip": "92700",
// "billing_country": "FR"
// }
// }
// ```
// ### GoCardless with IBAN
// ```json
// {
// "payment_profile": {
// "customer_id": "24907598",
// "bank_name": "French Bank",
// "bank_iban": "FR1420041010050500013M02606",
// "payment_type": "bank_account",
// "billing_address": "20 Place de la Gare",
// "billing_city": "Colombes",
// "billing_state": "Île-de-France",
// "billing_zip": "92700",
// "billing_country": "FR"
// }
// }
// ```
// ### Importing GoCardless
// If the customer, bank account, and mandate already exist in GoCardless, a payment profile can be created by using the IDs. In order to create masked versions of `bank_account_number` and `bank_routing_number` that are used to display within Advanced Billing Admin UI, you can pass the last four digits for this fields which then will be saved in this form `XXXX[four-provided-digits]`.
// ```json
// {
// "payment_profile": {
// "customer_id": "24907598",
// "customer_vault_token": [Existing GoCardless Customer ID]
// "vault_token": [Existing GoCardless Mandate ID],
// "current_vault": "gocardless",
// "bank_name": "French Bank",
// "bank_account_number": [Last Four Of The Existing Account Number or IBAN if applicable],
// "bank_routing_number": [Last Four Of The Existing Routing Number],
// "payment_type": "bank_account",
// "billing_address": "20 Place de la Gare",
// "billing_city": "Colombes",
// "billing_state": "Île-de-France",
// "billing_zip": "92700",
// "billing_country": "FR"
// }
// }
// ```
// ## SEPA Direct Debit
// For more information on Stripe SEPA Direct Debit, please view the following resources:
// + [Full documentation on Stripe SEPA Direct Debit](https://maxio.zendesk.com/hc/en-us/articles/24176170430093-Stripe-SEPA-and-BECS-Direct-Debit)
// + [Using Chargify.js with Stripe Direct Debit - minimal example](https://developers.chargify.com/docs/developer-docs/ZG9jOjE0NjAzNDIy-examples#minimal-example-with-sepa-or-becs-direct-debit-stripe-gateway)
// + [Using Chargify.js with Stripe Direct Debit - full example](https://developers.chargify.com/docs/developer-docs/ZG9jOjE0NjAzNDIy-examples#full-example-with-sepa-direct-debit-stripe-gateway)
// ### Stripe SEPA Direct Debit Payment Profiles
// The following example creates a customer, bank account and mandate in Stripe:
// ```json
// {
// "payment_profile": {
// "customer_id": "24907598",
// "bank_name": "Deutsche bank",
// "bank_iban": "DE89370400440532013000",
// "payment_type": "bank_account",
// "billing_address": "Test",
// "billing_city": "Berlin",
// "billing_state": "Brandenburg",
// "billing_zip": "12345",
// "billing_country": "DE"
// }
// }
// ```
// ## Stripe BECS Direct Debit
// For more information on Stripe BECS Direct Debit, please view the following resources:
// + [Full documentation on Stripe BECS Direct Debit](https://maxio.zendesk.com/hc/en-us/articles/24176170430093-Stripe-SEPA-and-BECS-Direct-Debit)
// + [Using Chargify.js with Stripe BECS Direct Debit - minimal example](https://developers.chargify.com/docs/developer-docs/ZG9jOjE0NjAzNDIy-examples#minimal-example-with-sepa-or-becs-direct-debit-stripe-gateway)
// + [Using Chargify.js with Stripe BECS Direct Debit - full example](https://developers.chargify.com/docs/developer-docs/ZG9jOjE0NjAzNDIy-examples#full-example-with-sepa-direct-debit-stripe-gateway)
// ### Stripe BECS Direct Debit Payment Profiles
// The following example creates a customer, bank account and mandate in Stripe:
// ```json
// {
// "payment_profile": {
// "customer_id": "24907598",
// "bank_name": "Australian bank",
// "bank_branch_code": "000000",
// "bank_account_number": "000123456"
// "payment_type": "bank_account",
// "billing_address": "Test",
// "billing_city": "Stony Rise",
// "billing_state": "Tasmania",
// "billing_zip": "12345",
// "billing_country": "AU"
// }
// }
// ```
// ## Stripe BACS Direct Debit
// Contact the support team to enable this payment method.
// For more information on Stripe BACS Direct Debit, please view the following resources:
// + [Full documentation on Stripe BACS Direct Debit](https://maxio.zendesk.com/hc/en-us/articles/24176170430093-Stripe-SEPA-and-BECS-Direct-Debit)
// ### Stripe BACS Direct Debit Payment Profiles
// The following example creates a customer, bank account and mandate in Stripe:
// ```json
// {
// "payment_profile": {
// "customer_id": "24907598",
// "bank_name": "British bank",
// "bank_branch_code": "108800",
// "bank_account_number": "00012345"
// "payment_type": "bank_account",
// "billing_address": "Test",
// "billing_city": "London",
// "billing_state": "LND",
// "billing_zip": "12345",
// "billing_country": "GB"
// }
// }
// ```
// ## 3D Secure - Checkout
// It may happen that a payment needs 3D Secure Authentication when the payment profile is created; this is referred to in our help docs as a [post-authentication flow](https://maxio.zendesk.com/hc/en-us/articles/24176278996493-Testing-Implementing-3D-Secure#psd2-flows-pre-authentication-and-post-authentication). The server returns `422 Unprocessable Entity` in this case with the following response:
// ```json
// {
// "jsonapi": {
// "version": "1.0"
// },
// "errors": [
// {
// "title": "This card requires 3DSecure verification.",
// "detail": "This card requires 3D secure authentication. Redirect the customer to the URL from the action_link attribute to authenticate. Attach callback_url param to this URL if you want to be notified about the result of 3D Secure authentication. Attach redirect_url param to this URL if you want to redirect a customer back to your page after 3D Secure authentication. Example: https://checkout-test.chargifypay.test/3d-secure/checkout/pay_uerzhsxd5uhkbodx5jhvkg6yeu?one_time_token_id=93&callback_url=http://localhost:4000&redirect_url=https://yourpage.com will do a POST request to https://localhost:4000 after credit card is authenticated and will redirect a customer to https://yourpage.com after 3DS authentication.",
// "links": {
// "action_link": "https://checkout-test.chargifypay.test/3d-secure/checkout/pay_uerzhsxd5uhkbodx5jhvkg6yeu?one_time_token_id=93"
// }
// }
// ]
// }
// ```
// To let the customer go through 3D Secure Authentication, they need to be redirected to the URL specified in `action_link`.
// Optionally, you can specify `callback_url` parameter in the `action_link` URL if you’d like to be notified about the result of 3D Secure Authentication. The `callback_url` will return the following information:
// - whether the authentication was successful (`success`)
// - the payment profile ID (`payment_profile_id`)
// Lastly, you can also specify a `redirect_url` parameter within the `action_link` URL if you’d like to redirect a customer back to your site.
// It is not possible to use `action_link` in an iframe inside a custom application. You have to redirect the customer directly to the `action_link`, then, to be notified about the result, use `redirect_url` or `callback_url`.
// The final URL that you send a customer to complete 3D Secure may resemble the following, where the first half is the `action_link` and the second half contains a `redirect_url` and `callback_url`: `https://checkout-test.chargifypay.test/3d-secure/checkout/pay_uerzhsxd5uhkbodx5jhvkg6yeu?one_time_token_id=93&callback_url=http://localhost:4000&redirect_url=https://yourpage.com`
// ### Example Redirect Flow
// You may wish to redirect customers to different pages depending on whether their SCA was performed successfully. Here's an example flow to use as a reference:
// 1. Create a payment profile via API; it requires 3DS
// 2. You receive a `action_link` in the response.
// 3. Use this `action_link` to, for example, connect with your internal resources or generate a session_id
// 4. Include 1 of those attributes inside the `callback_url` and `redirect_url` to be aware which “session” this applies to
// 5. Redirect the customer to the `action_link` with `callback_url` and `redirect_url` applied
// 6. After the customer finishes 3DS authentication, we let you know the result by making a request to applied `callback_url`.
// 7. After that, we redirect the customer to the `redirect_url`; at this point the result of authentication is known
// 8. Optionally, you can use the applied "msg" param in the `redirect_url` to determine whether it was successful or not
func (p *PaymentProfilesController) CreatePaymentProfile(
ctx context.Context,
body *models.CreatePaymentProfileRequest) (
models.ApiResponse[models.PaymentProfileResponse],
error) {
req := p.prepareRequest(ctx, "POST", "/payment_profiles.json")
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {TemplatedMessage: "Not Found:'{$response.body}'"},
"422": {TemplatedMessage: "HTTP Response Not OK. Status code: {$statusCode}. Response: '{$response.body}'.", Unmarshaller: errors.NewErrorListResponse},
})
req.Header("Content-Type", "application/json")
if body != nil {
req.Json(body)
}
var result models.PaymentProfileResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.PaymentProfileResponse](decoder)
return models.NewApiResponse(result, resp), err
}
// ListPaymentProfilesInput represents the input of the ListPaymentProfiles endpoint.
type ListPaymentProfilesInput struct {
// Result records are organized in pages. By default, the first page of results is displayed. The page parameter specifies a page number of results to fetch. You can start navigating through the pages to consume the results. You do this by passing in a page parameter. Retrieve the next page by adding ?page=2 to the query string. If there are no results to return, then an empty result set will be returned.
// Use in query `page=1`.
Page *int
// This parameter indicates how many records to fetch in each request. Default value is 20. The maximum allowed values is 200; any per_page value over 200 will be changed to 200.
// Use in query `per_page=200`.
PerPage *int
// The ID of the customer for which you wish to list payment profiles
CustomerId *int
}
// ListPaymentProfiles takes context, page, perPage, customerId as parameters and
// returns an models.ApiResponse with []models.PaymentProfileResponse data and
// an error if there was an issue with the request or response.
// This method will return all of the active `payment_profiles` for a Site, or for one Customer within a site. If no payment profiles are found, this endpoint will return an empty array, not a 404.
func (p *PaymentProfilesController) ListPaymentProfiles(
ctx context.Context,
input ListPaymentProfilesInput) (
models.ApiResponse[[]models.PaymentProfileResponse],
error) {
req := p.prepareRequest(ctx, "GET", "/payment_profiles.json")
req.Authenticate(NewAuth("BasicAuth"))
if input.Page != nil {
req.QueryParam("page", *input.Page)
}
if input.PerPage != nil {
req.QueryParam("per_page", *input.PerPage)
}
if input.CustomerId != nil {
req.QueryParam("customer_id", *input.CustomerId)
}
var result []models.PaymentProfileResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[[]models.PaymentProfileResponse](decoder)
return models.NewApiResponse(result, resp), err
}
// ReadPaymentProfile takes context, paymentProfileId as parameters and
// returns an models.ApiResponse with models.PaymentProfileResponse data and
// an error if there was an issue with the request or response.
// Using the GET method you can retrieve a Payment Profile identified by its unique ID.
// Please note that a different JSON object will be returned if the card method on file is a bank account.
// ### Response for Bank Account
// Example response for Bank Account:
// ```
// {
// "payment_profile": {
// "id": 10089892,
// "first_name": "Chester",
// "last_name": "Tester",
// "customer_id": 14543792,
// "current_vault": "bogus",
// "vault_token": "0011223344",
// "billing_address": "456 Juniper Court",
// "billing_city": "Boulder",
// "billing_state": "CO",
// "billing_zip": "80302",
// "billing_country": "US",
// "customer_vault_token": null,
// "billing_address_2": "",
// "bank_name": "Bank of Kansas City",
// "masked_bank_routing_number": "XXXX6789",
// "masked_bank_account_number": "XXXX3344",
// "bank_account_type": "checking",
// "bank_account_holder_type": "personal",
// "payment_type": "bank_account",
// "site_gateway_setting_id": 1,
// "gateway_handle": null
// }
// }
// ```
func (p *PaymentProfilesController) ReadPaymentProfile(
ctx context.Context,
paymentProfileId int) (
models.ApiResponse[models.PaymentProfileResponse],
error) {
req := p.prepareRequest(
ctx,
"GET",
fmt.Sprintf("/payment_profiles/%v.json", paymentProfileId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {Message: "Not Found"},
})
var result models.PaymentProfileResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.PaymentProfileResponse](decoder)
return models.NewApiResponse(result, resp), err
}
// UpdatePaymentProfile takes context, paymentProfileId, body as parameters and
// returns an models.ApiResponse with models.PaymentProfileResponse data and
// an error if there was an issue with the request or response.
// ## Partial Card Updates
// In the event that you are using the Authorize.net, Stripe, Cybersource, Forte or Braintree Blue payment gateways, you can update just the billing and contact information for a payment method. Note the lack of credit-card related data contained in the JSON payload.
// In this case, the following JSON is acceptable:
// ```
// {
// "payment_profile": {
// "first_name": "Kelly",
// "last_name": "Test",
// "billing_address": "789 Juniper Court",
// "billing_city": "Boulder",
// "billing_state": "CO",
// "billing_zip": "80302",
// "billing_country": "US",
// "billing_address_2": null
// }
// }
// ```
// The result will be that you have updated the billing information for the card, yet retained the original card number data.
// ## Specific notes on updating payment profiles
// - Merchants with **Authorize.net**, **Cybersource**, **Forte**, **Braintree Blue** or **Stripe** as their payment gateway can update their Customer’s credit cards without passing in the full credit card number and CVV.
// - If you are using **Authorize.net**, **Cybersource**, **Forte**, **Braintree Blue** or **Stripe**, Advanced Billing will ignore the credit card number and CVV when processing an update via the API, and attempt a partial update instead. If you wish to change the card number on a payment profile, you will need to create a new payment profile for the given customer.
// - A Payment Profile cannot be updated with the attributes of another type of Payment Profile. For example, if the payment profile you are attempting to update is a credit card, you cannot pass in bank account attributes (like `bank_account_number`), and vice versa.
// - Updating a payment profile directly will not trigger an attempt to capture a past-due balance. If this is the intent, update the card details via the Subscription instead.
// - If you are using Authorize.net or Stripe, you may elect to manually trigger a retry for a past due subscription after a partial update.
func (p *PaymentProfilesController) UpdatePaymentProfile(
ctx context.Context,
paymentProfileId int,
body *models.UpdatePaymentProfileRequest) (
models.ApiResponse[models.PaymentProfileResponse],
error) {
req := p.prepareRequest(
ctx,
"PUT",
fmt.Sprintf("/payment_profiles/%v.json", paymentProfileId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {Message: "Not Found"},
"422": {TemplatedMessage: "HTTP Response Not OK. Status code: {$statusCode}. Response: '{$response.body}'.", Unmarshaller: errors.NewErrorStringMapResponse},
})
req.Header("Content-Type", "application/json")
if body != nil {
req.Json(body)
}
var result models.PaymentProfileResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.PaymentProfileResponse](decoder)
return models.NewApiResponse(result, resp), err
}
// DeleteUnusedPaymentProfile takes context, paymentProfileId as parameters and
// returns an *Response and
// an error if there was an issue with the request or response.
// Deletes an unused payment profile.
// If the payment profile is in use by one or more subscriptions or groups, a 422 and error message will be returned.
func (p *PaymentProfilesController) DeleteUnusedPaymentProfile(
ctx context.Context,
paymentProfileId int) (
*http.Response,
error) {
req := p.prepareRequest(
ctx,
"DELETE",
fmt.Sprintf("/payment_profiles/%v.json", paymentProfileId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {Message: "Not Found"},
"422": {TemplatedMessage: "HTTP Response Not OK. Status code: {$statusCode}. Response: '{$response.body}'.", Unmarshaller: errors.NewErrorListResponse},
})
httpCtx, err := req.Call()
if err != nil {
return httpCtx.Response, err
}
return httpCtx.Response, err
}
// DeleteSubscriptionsPaymentProfile takes context, subscriptionId, paymentProfileId as parameters and
// returns an *Response and
// an error if there was an issue with the request or response.
// This will delete a payment profile belonging to the customer on the subscription.
// + If the customer has multiple subscriptions, the payment profile will be removed from all of them.
// + If you delete the default payment profile for a subscription, you will need to specify another payment profile to be the default through the api, or either prompt the user to enter a card in the billing portal or on the self-service page, or visit the Payment Details tab on the subscription in the Admin UI and use the “Add New Credit Card” or “Make Active Payment Method” link, (depending on whether there are other cards present).
func (p *PaymentProfilesController) DeleteSubscriptionsPaymentProfile(
ctx context.Context,
subscriptionId int,
paymentProfileId int) (
*http.Response,
error) {
req := p.prepareRequest(
ctx,
"DELETE",
fmt.Sprintf("/subscriptions/%v/payment_profiles/%v.json", subscriptionId, paymentProfileId),
)
req.Authenticate(NewAuth("BasicAuth"))
httpCtx, err := req.Call()
if err != nil {
return httpCtx.Response, err
}
return httpCtx.Response, err
}
// VerifyBankAccount takes context, bankAccountId, body as parameters and
// returns an models.ApiResponse with models.BankAccountResponse data and
// an error if there was an issue with the request or response.
// Submit the two small deposit amounts the customer received in their bank account in order to verify the bank account. (Stripe only)
func (p *PaymentProfilesController) VerifyBankAccount(
ctx context.Context,
bankAccountId int,
body *models.BankAccountVerificationRequest) (
models.ApiResponse[models.BankAccountResponse],
error) {
req := p.prepareRequest(
ctx,
"PUT",
fmt.Sprintf("/bank_accounts/%v/verification.json", bankAccountId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {TemplatedMessage: "Not Found:'{$response.body}'"},
"422": {TemplatedMessage: "HTTP Response Not OK. Status code: {$statusCode}. Response: '{$response.body}'.", Unmarshaller: errors.NewErrorListResponse},
})
req.Header("Content-Type", "application/json")
if body != nil {
req.Json(body)
}
var result models.BankAccountResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.BankAccountResponse](decoder)
return models.NewApiResponse(result, resp), err
}
// DeleteSubscriptionGroupPaymentProfile takes context, uid, paymentProfileId as parameters and
// returns an *Response and
// an error if there was an issue with the request or response.
// This will delete a Payment Profile belonging to a Subscription Group.
// **Note**: If the Payment Profile belongs to multiple Subscription Groups and/or Subscriptions, it will be removed from all of them.
func (p *PaymentProfilesController) DeleteSubscriptionGroupPaymentProfile(
ctx context.Context,
uid string,
paymentProfileId int) (
*http.Response,
error) {
req := p.prepareRequest(
ctx,
"DELETE",
fmt.Sprintf("/subscription_groups/%v/payment_profiles/%v.json", uid, paymentProfileId),
)
req.Authenticate(NewAuth("BasicAuth"))
httpCtx, err := req.Call()
if err != nil {
return httpCtx.Response, err
}
return httpCtx.Response, err
}
// ChangeSubscriptionDefaultPaymentProfile takes context, subscriptionId, paymentProfileId as parameters and
// returns an models.ApiResponse with models.PaymentProfileResponse data and
// an error if there was an issue with the request or response.
// This will change the default payment profile on the subscription to the existing payment profile with the id specified.
// You must elect to change the existing payment profile to a new payment profile ID in order to receive a satisfactory response from this endpoint.
func (p *PaymentProfilesController) ChangeSubscriptionDefaultPaymentProfile(
ctx context.Context,
subscriptionId int,
paymentProfileId int) (
models.ApiResponse[models.PaymentProfileResponse],
error) {
req := p.prepareRequest(
ctx,
"POST",
fmt.Sprintf("/subscriptions/%v/payment_profiles/%v/change_payment_profile.json", subscriptionId, paymentProfileId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {Message: "Not Found"},
"422": {TemplatedMessage: "HTTP Response Not OK. Status code: {$statusCode}. Response: '{$response.body}'.", Unmarshaller: errors.NewErrorListResponse},
})
var result models.PaymentProfileResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.PaymentProfileResponse](decoder)
return models.NewApiResponse(result, resp), err
}
// ChangeSubscriptionGroupDefaultPaymentProfile takes context, uid, paymentProfileId as parameters and
// returns an models.ApiResponse with models.PaymentProfileResponse data and
// an error if there was an issue with the request or response.
// This will change the default payment profile on the subscription group to the existing payment profile with the id specified.
// You must elect to change the existing payment profile to a new payment profile ID in order to receive a satisfactory response from this endpoint.
// The new payment profile must belong to the subscription group's customer, otherwise you will receive an error.
func (p *PaymentProfilesController) ChangeSubscriptionGroupDefaultPaymentProfile(
ctx context.Context,
uid string,
paymentProfileId int) (
models.ApiResponse[models.PaymentProfileResponse],
error) {
req := p.prepareRequest(
ctx,
"POST",
fmt.Sprintf("/subscription_groups/%v/payment_profiles/%v/change_payment_profile.json", uid, paymentProfileId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"422": {TemplatedMessage: "HTTP Response Not OK. Status code: {$statusCode}. Response: '{$response.body}'.", Unmarshaller: errors.NewErrorListResponse},
})
var result models.PaymentProfileResponse
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.PaymentProfileResponse](decoder)
return models.NewApiResponse(result, resp), err
}
// ReadOneTimeToken takes context, chargifyToken as parameters and
// returns an models.ApiResponse with models.GetOneTimeTokenRequest data and
// an error if there was an issue with the request or response.
// One Time Tokens aka Advanced Billing Tokens house the credit card or ACH (Authorize.Net or Stripe only) data for a customer.
// You can use One Time Tokens while creating a subscription or payment profile instead of passing all bank account or credit card data directly to a given API endpoint.
// To obtain a One Time Token you have to use [Chargify.js](https://developers.chargify.com/docs/developer-docs/ZG9jOjE0NjAzNDI0-overview).
func (p *PaymentProfilesController) ReadOneTimeToken(
ctx context.Context,
chargifyToken string) (
models.ApiResponse[models.GetOneTimeTokenRequest],
error) {
req := p.prepareRequest(
ctx,
"GET",
fmt.Sprintf("/one_time_tokens/%v.json", chargifyToken),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {TemplatedMessage: "Not Found:'{$response.body}'", Unmarshaller: errors.NewErrorListResponse},
})
var result models.GetOneTimeTokenRequest
decoder, resp, err := req.CallAsJson()
if err != nil {
return models.NewApiResponse(result, resp), err
}
result, err = utilities.DecodeResults[models.GetOneTimeTokenRequest](decoder)
return models.NewApiResponse(result, resp), err
}
// SendRequestUpdatePaymentEmail takes context, subscriptionId as parameters and
// returns an *Response and
// an error if there was an issue with the request or response.
// You can send a "request payment update" email to the customer associated with the subscription.
// If you attempt to send a "request payment update" email more than five times within a 30-minute period, you will receive a `422` response with an error message in the body. This error message will indicate that the request has been rejected due to excessive attempts, and will provide instructions on how to resubmit the request.
// Additionally, if you attempt to send a "request payment update" email for a subscription that does not exist, you will receive a `404` error response. This error message will indicate that the subscription could not be found, and will provide instructions on how to correct the error and resubmit the request.
// These error responses are designed to prevent excessive or invalid requests, and to provide clear and helpful information to users who encounter errors during the request process.
func (p *PaymentProfilesController) SendRequestUpdatePaymentEmail(
ctx context.Context,
subscriptionId int) (
*http.Response,
error) {
req := p.prepareRequest(
ctx,
"POST",
fmt.Sprintf("/subscriptions/%v/request_payment_profiles_update.json", subscriptionId),
)
req.Authenticate(NewAuth("BasicAuth"))
req.AppendErrors(map[string]https.ErrorBuilder[error]{
"404": {TemplatedMessage: "Not Found:'{$response.body}'"},
"422": {TemplatedMessage: "HTTP Response Not OK. Status code: {$statusCode}. Response: '{$response.body}'.", Unmarshaller: errors.NewErrorListResponse},
})
httpCtx, err := req.Call()
if err != nil {
return httpCtx.Response, err
}
return httpCtx.Response, err
}