Class: PayWithAmazon::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/pay_with_amazon/client.rb,
lib/pay_with_amazon/client_helper.rb

Overview

This will extend the client class to add additional helper methods that combine core API calls.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(merchant_id, access_key, secret_key, sandbox: false, currency_code: :usd, region: :na, platform_id: nil, throttle: true, application_name: nil, application_version: nil, proxy_addr: :ENV, proxy_port: nil, proxy_user: nil, proxy_pass: nil) ⇒ Client

API keys are located at:

Parameters:

  • merchant_id (String)
  • access_key (String)
  • secret_key (String)

See Also:



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
# File 'lib/pay_with_amazon/client.rb', line 47

def initialize(
        merchant_id,
        access_key,
        secret_key,
        sandbox: false,
        currency_code: :usd,
        region: :na,
        platform_id: nil,
        throttle: true,
        application_name: nil,
        application_version: nil,
        proxy_addr: :ENV,
        proxy_port: nil,
        proxy_user: nil,
        proxy_pass: nil)

  @merchant_id = merchant_id
  @access_key = access_key
  @secret_key = secret_key
  @currency_code = currency_code.to_s.upcase
  @sandbox = sandbox
  @sandbox_str = @sandbox ? 'OffAmazonPayments_Sandbox' : 'OffAmazonPayments'
  @region = region
  @mws_endpoint = region_hash[@region] ? region_hash[@region] : raise("Invalid Region Code. (#{@region})")
  @platform_id = platform_id
  @throttle = throttle
  @application_name = application_name
  @application_version = application_version
  @proxy_addr = proxy_addr
  @proxy_port = proxy_port
  @proxy_user = proxy_user
  @proxy_pass = proxy_pass

  @default_hash = {
    'AWSAccessKeyId' => @access_key,
    'SignatureMethod' => 'HmacSHA256',
    'SignatureVersion' => '2',
    'Timestamp' => Time.now.utc.iso8601,
    'Version' => PayWithAmazon::API_VERSION
  }

  @default_hash['PlatformId'] = @platform_id if @platform_id
end

Instance Attribute Details

#access_keyObject (readonly)

Returns the value of attribute access_key.



12
13
14
# File 'lib/pay_with_amazon/client.rb', line 12

def access_key
  @access_key
end

#application_nameObject (readonly)

Returns the value of attribute application_name.



12
13
14
# File 'lib/pay_with_amazon/client.rb', line 12

def application_name
  @application_name
end

#application_versionObject (readonly)

Returns the value of attribute application_version.



12
13
14
# File 'lib/pay_with_amazon/client.rb', line 12

def application_version
  @application_version
end

#currency_codeObject (readonly)

Returns the value of attribute currency_code.



12
13
14
# File 'lib/pay_with_amazon/client.rb', line 12

def currency_code
  @currency_code
end

#merchant_idObject (readonly)

Returns the value of attribute merchant_id.



12
13
14
# File 'lib/pay_with_amazon/client.rb', line 12

def merchant_id
  @merchant_id
end

#platform_idObject (readonly)

Returns the value of attribute platform_id.



12
13
14
# File 'lib/pay_with_amazon/client.rb', line 12

def platform_id
  @platform_id
end

#proxy_addrObject

Returns the value of attribute proxy_addr.



24
25
26
# File 'lib/pay_with_amazon/client.rb', line 24

def proxy_addr
  @proxy_addr
end

#proxy_passObject

Returns the value of attribute proxy_pass.



24
25
26
# File 'lib/pay_with_amazon/client.rb', line 24

def proxy_pass
  @proxy_pass
end

#proxy_portObject

Returns the value of attribute proxy_port.



24
25
26
# File 'lib/pay_with_amazon/client.rb', line 24

def proxy_port
  @proxy_port
end

#proxy_userObject

Returns the value of attribute proxy_user.



24
25
26
# File 'lib/pay_with_amazon/client.rb', line 24

def proxy_user
  @proxy_user
end

#regionObject (readonly)

Returns the value of attribute region.



12
13
14
# File 'lib/pay_with_amazon/client.rb', line 12

def region
  @region
end

#sandboxObject

Returns the value of attribute sandbox.



12
13
14
# File 'lib/pay_with_amazon/client.rb', line 12

def sandbox
  @sandbox
end

#secret_keyObject (readonly)

Returns the value of attribute secret_key.



12
13
14
# File 'lib/pay_with_amazon/client.rb', line 12

def secret_key
  @secret_key
end

#throttleObject (readonly)

Returns the value of attribute throttle.



12
13
14
# File 'lib/pay_with_amazon/client.rb', line 12

def throttle
  @throttle
end

Instance Method Details

#authorize(amazon_order_reference_id, authorization_reference_id, amount, currency_code: @currency_code, seller_authorization_note: nil, transaction_timeout: nil, capture_now: nil, soft_descriptor: nil, provider_credit_details: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Reserves a specified amount against the payment method(s) stored in the order reference

Parameters:

  • amazon_order_reference_id (String)
  • authorization_reference_id (String)
  • amount (String)

See Also:



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
# File 'lib/pay_with_amazon/client.rb', line 494

def authorize(
        amazon_order_reference_id,
        authorization_reference_id,
        amount,
        currency_code: @currency_code,
        seller_authorization_note: nil,
        transaction_timeout: nil,
        capture_now: nil,
        soft_descriptor: nil,
        provider_credit_details: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'Authorize',
    'SellerId' => merchant_id,
    'AmazonOrderReferenceId' => amazon_order_reference_id,
    'AuthorizationReferenceId' => authorization_reference_id,
    'AuthorizationAmount.Amount' => amount,
    'AuthorizationAmount.CurrencyCode' => currency_code
  }

  optional = {
    'SellerAuthorizationNote' => seller_authorization_note,
    'TransactionTimeout' => transaction_timeout,
    'CaptureNow' => capture_now,
    'SoftDescriptor' => soft_descriptor,
    'MWSAuthToken' => mws_auth_token
  }

  optional.merge!(set_provider_credit_details(provider_credit_details)) if provider_credit_details

  operation(parameters, optional)
end

#authorize_on_billing_agreement(amazon_billing_agreement_id, authorization_reference_id, amount, currency_code: @currency_code, seller_authorization_note: nil, transaction_timeout: nil, capture_now: false, soft_descriptor: nil, seller_note: nil, platform_id: nil, custom_information: nil, seller_order_id: nil, store_name: nil, inherit_shipping_address: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Reserves a specified amount against the payment method(s) stored in the billing agreement

Parameters:

  • amazon_billing_agreement_id (String)
  • authorization_reference_id (String)
  • amount (String)

See Also:



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
# File 'lib/pay_with_amazon/client.rb', line 287

def authorize_on_billing_agreement(
        amazon_billing_agreement_id,
        authorization_reference_id,
        amount,
        currency_code: @currency_code,
        seller_authorization_note: nil,
        transaction_timeout: nil,
        capture_now: false,
        soft_descriptor: nil,
        seller_note: nil,
        platform_id: nil,
        custom_information: nil,
        seller_order_id: nil,
        store_name: nil,
        inherit_shipping_address: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'AuthorizeOnBillingAgreement',
    'SellerId' => merchant_id,
    'AmazonBillingAgreementId' => amazon_billing_agreement_id,
    'AuthorizationReferenceId' => authorization_reference_id,
    'AuthorizationAmount.Amount' => amount,
    'AuthorizationAmount.CurrencyCode' => currency_code
  }

  optional = {
    'SellerAuthorizationNote' => seller_authorization_note,
    'TransactionTimeout' => transaction_timeout,
    'CaptureNow' => capture_now,
    'SoftDescriptor' => soft_descriptor,
    'SellerNote' => seller_note,
    'PlatformId' => platform_id,
    'SellerOrderAttributes.CustomInformation' => custom_information,
    'SellerOrderAttributes.SellerOrderId' => seller_order_id,
    'SellerOrderAttributes.StoreName' => store_name,
    'InheritShippingAddress' => inherit_shipping_address,
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#cancel_order_reference(amazon_order_reference_id, cancelation_reason: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Cancels a previously confirmed order reference



460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
# File 'lib/pay_with_amazon/client.rb', line 460

def cancel_order_reference(
        amazon_order_reference_id,
        cancelation_reason: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'CancelOrderReference',
    'SellerId' => merchant_id,
    'AmazonOrderReferenceId' => amazon_order_reference_id
  }

  optional = {
    'CancelationReason' => cancelation_reason,
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#capture(amazon_authorization_id, capture_reference_id, amount, currency_code: @currency_code, seller_capture_note: nil, soft_descriptor: nil, provider_credit_details: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Captures funds from an authorized payment instrument.

Parameters:

  • amazon_authorization_id (String)
  • capture_reference_id (String)
  • amount (String)

See Also:



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
# File 'lib/pay_with_amazon/client.rb', line 564

def capture(
        amazon_authorization_id,
        capture_reference_id,
        amount,
        currency_code: @currency_code,
        seller_capture_note: nil,
        soft_descriptor: nil,
        provider_credit_details: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'Capture',
    'SellerId' => merchant_id,
    'AmazonAuthorizationId' => amazon_authorization_id,
    'CaptureReferenceId' => capture_reference_id,
    'CaptureAmount.Amount' => amount,
    'CaptureAmount.CurrencyCode' => currency_code
  }

  optional = {
    'SellerCaptureNote' => seller_capture_note,
    'SoftDescriptor' => soft_descriptor,
    'MWSAuthToken' => mws_auth_token
  }

  optional.merge!(set_provider_credit_details(provider_credit_details)) if provider_credit_details

  operation(parameters, optional)
end

#charge(amazon_reference_id, authorization_reference_id, charge_amount, charge_currency_code: @currency_code, charge_note: nil, charge_order_id: nil, store_name: nil, custom_information: nil, soft_descriptor: nil, platform_id: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

This method combines multiple API calls to perform a complete transaction with minimum requirements.

Parameters:

  • amazon_reference_id (String)
  • authorization_reference_id (String)
  • charge_amount (String)


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
# File 'lib/pay_with_amazon/client_helper.rb', line 21

def charge(
        amazon_reference_id,
        authorization_reference_id,
        charge_amount,
        charge_currency_code: @currency_code,
        charge_note: nil,
        charge_order_id: nil,
        store_name: nil,
        custom_information: nil,
        soft_descriptor: nil,
        platform_id: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  if is_order_reference?(amazon_reference_id)
    response = call_order_reference_api(
                   amazon_reference_id,
                   authorization_reference_id,
                   charge_amount,
                   charge_currency_code,
                   charge_note,
                   charge_order_id,
                   store_name,
                   custom_information,
                   soft_descriptor,
                   platform_id,
                   merchant_id,
                   mws_auth_token)
    return response
  end

  if is_billing_agreement?(amazon_reference_id)
    response = call_billing_agreement_api(
                   amazon_reference_id,
                   authorization_reference_id,
                   charge_amount,
                   charge_currency_code,
                   charge_note,
                   charge_order_id,
                   store_name,
                   custom_information,
                   soft_descriptor,
                   platform_id,
                   merchant_id,
                   mws_auth_token)
    return response
  end
end

#close_authorization(amazon_authorization_id, closure_reason: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Closes an authorization



690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
# File 'lib/pay_with_amazon/client.rb', line 690

def close_authorization(
        amazon_authorization_id,
        closure_reason: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'CloseAuthorization',
    'SellerId' => merchant_id,
    'AmazonAuthorizationId' => amazon_authorization_id
  }

  optional = {
    'ClosureReason' => closure_reason,
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#close_billing_agreement(amazon_billing_agreement_id, closure_reason: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Confirms that you want to terminate the billing agreement with the buyer and that you do not expect to create any new order references or authorizations on this billing agreement



339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
# File 'lib/pay_with_amazon/client.rb', line 339

def close_billing_agreement(
        amazon_billing_agreement_id,
        closure_reason: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'CloseBillingAgreement',
    'SellerId' => merchant_id,
    'AmazonBillingAgreementId' => amazon_billing_agreement_id
  }

  optional = {
    'ClosureReason' => closure_reason,
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#close_order_reference(amazon_order_reference_id, closure_reason: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Confirms that an order reference has been fulfilled (fully or partially) and that you do not expect to create any new authorizations on this order reference



718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
# File 'lib/pay_with_amazon/client.rb', line 718

def close_order_reference(
        amazon_order_reference_id,
        closure_reason: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'CloseOrderReference',
    'SellerId' => merchant_id,
    'AmazonOrderReferenceId' => amazon_order_reference_id
  }

  optional = {
    'ClosureReason' => closure_reason,
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#confirm_billing_agreement(amazon_billing_agreement_id, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Confirms that the billing agreement is free of constraints and all required information has been set on the billing agreement



226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# File 'lib/pay_with_amazon/client.rb', line 226

def confirm_billing_agreement(
        amazon_billing_agreement_id,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'ConfirmBillingAgreement',
    'SellerId' => merchant_id,
    'AmazonBillingAgreementId' => amazon_billing_agreement_id
  }

  optional = {
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#confirm_order_reference(amazon_order_reference_id, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Confirms that the order reference is free of constraints and all required information has been set on the order reference



436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
# File 'lib/pay_with_amazon/client.rb', line 436

def confirm_order_reference(
        amazon_order_reference_id,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'ConfirmOrderReference',
    'SellerId' => merchant_id,
    'AmazonOrderReferenceId' => amazon_order_reference_id
  }

  optional = {
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#create_order_reference_for_id(id, id_type, inherit_shipping_address: nil, confirm_now: nil, amount: nil, currency_code: @currency_code, platform_id: nil, seller_note: nil, seller_order_id: nil, store_name: nil, custom_information: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Creates an order reference for the given object



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
# File 'lib/pay_with_amazon/client.rb', line 117

def create_order_reference_for_id(
        id,
        id_type,
        inherit_shipping_address: nil,
        confirm_now: nil,
        amount: nil,
        currency_code: @currency_code,
        platform_id: nil,
        seller_note: nil,
        seller_order_id: nil,
        store_name: nil,
        custom_information: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'CreateOrderReferenceForId',
    'SellerId' => merchant_id,
    'Id' => id,
    'IdType' => id_type
  }

  optional = {
    'InheritShippingAddress' => inherit_shipping_address,
    'ConfirmNow' => confirm_now,
    'OrderReferenceAttributes.OrderTotal.Amount' => amount,
    'OrderReferenceAttributes.OrderTotal.CurrencyCode' => currency_code,
    'OrderReferenceAttributes.PlatformId' => platform_id,
    'OrderReferenceAttributes.SellerNote' => seller_note,
    'OrderReferenceAttributes.SellerOrderAttributes.SellerOrderId' => seller_order_id,
    'OrderReferenceAttributes.SellerOrderAttributes.StoreName' => store_name,
    'OrderReferenceAttributes.SellerOrderAttributes.CustomInformation' => custom_information,
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#get_authorization_details(amazon_authorization_id, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Returns the status of a particular authorization and the total amount captured on the authorization



535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
# File 'lib/pay_with_amazon/client.rb', line 535

def get_authorization_details(
        amazon_authorization_id,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'GetAuthorizationDetails',
    'SellerId' => merchant_id,
    'AmazonAuthorizationId' => amazon_authorization_id
  }

  optional = {
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#get_billing_agreement_details(amazon_billing_agreement_id, address_consent_token: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Returns details about the Billing Agreement object and its current state



161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# File 'lib/pay_with_amazon/client.rb', line 161

def get_billing_agreement_details(
        amazon_billing_agreement_id,
        address_consent_token: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'GetBillingAgreementDetails',
    'SellerId' => merchant_id,
    'AmazonBillingAgreementId' => amazon_billing_agreement_id
  }

  optional = {
    'AddressConsentToken' => address_consent_token,
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#get_capture_details(amazon_capture_id, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Returns the status of a particular capture and the total amount refunded on the capture



601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
# File 'lib/pay_with_amazon/client.rb', line 601

def get_capture_details(
        amazon_capture_id,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'GetCaptureDetails',
    'SellerId' => merchant_id,
    'AmazonCaptureId' => amazon_capture_id
  }

  optional = {
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#get_order_reference_details(amazon_order_reference_id, address_consent_token: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Returns details about the Order Reference object and its current state



365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
# File 'lib/pay_with_amazon/client.rb', line 365

def get_order_reference_details(
        amazon_order_reference_id,
        address_consent_token: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'GetOrderReferenceDetails',
    'SellerId' => merchant_id,
    'AmazonOrderReferenceId' => amazon_order_reference_id
  }

  optional = {
    'AddressConsentToken' => address_consent_token,
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#get_provider_credit_details(amazon_provider_credit_id, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Parameters:

  • amazon_provider_credit_id (String)


741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
# File 'lib/pay_with_amazon/client.rb', line 741

def get_provider_credit_details(
        amazon_provider_credit_id,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

    parameters = {
      'Action' => 'GetProviderCreditDetails',
      'SellerId' => merchant_id,
      'AmazonProviderCreditId' => amazon_provider_credit_id
    }

    optional = {
      'MWSAuthToken' => mws_auth_token
    }

    operation(parameters, optional)
end

#get_provider_credit_reversal_details(amazon_provider_credit_reversal_id, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Parameters:

  • amazon_provider_credit_reversal_id (String)


762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
# File 'lib/pay_with_amazon/client.rb', line 762

def get_provider_credit_reversal_details(
        amazon_provider_credit_reversal_id,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

    parameters = {
      'Action' => 'GetProviderCreditReversalDetails',
      'SellerId' => merchant_id,
      'AmazonProviderCreditReversalId' => amazon_provider_credit_reversal_id
    }

    optional = {
      'MWSAuthToken' => mws_auth_token
    }

    operation(parameters, optional)
end

#get_refund_details(amazon_refund_id, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Returns the status of a particular refund



666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
# File 'lib/pay_with_amazon/client.rb', line 666

def get_refund_details(
        amazon_refund_id,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'GetRefundDetails',
    'SellerId' => merchant_id,
    'AmazonRefundId' => amazon_refund_id
  }

  optional = {
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#get_service_statusObject

The GetServiceStatus operation returns the operational status of the Amazon Payments API section of Amazon Marketplace Web Service (Amazon MWS). Status values are GREEN, GREEN_I, YELLOW, and RED.



94
95
96
97
98
99
100
# File 'lib/pay_with_amazon/client.rb', line 94

def get_service_status
  parameters = {
    'Action' => 'GetServiceStatus'
  }

  operation(parameters, {})
end

#refund(amazon_capture_id, refund_reference_id, amount, currency_code: @currency_code, seller_refund_note: nil, soft_descriptor: nil, provider_credit_reversal_details: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Refunds a previously captured amount

Parameters:

  • amazon_capture_id (String)
  • refund_reference_id (String)
  • amount (String)

See Also:



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
# File 'lib/pay_with_amazon/client.rb', line 630

def refund(
        amazon_capture_id,
        refund_reference_id,
        amount,
        currency_code: @currency_code,
        seller_refund_note: nil,
        soft_descriptor: nil,
        provider_credit_reversal_details: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'Refund',
    'SellerId' => merchant_id,
    'AmazonCaptureId' => amazon_capture_id,
    'RefundReferenceId' => refund_reference_id,
    'RefundAmount.Amount' => amount,
    'RefundAmount.CurrencyCode' => currency_code
  }

  optional = {
    'SellerRefundNote' => seller_refund_note,
    'SoftDescriptor' => soft_descriptor,
    'MWSAuthToken' => mws_auth_token
  }

  optional.merge!(set_provider_credit_reversal_details(provider_credit_reversal_details)) if provider_credit_reversal_details

  operation(parameters, optional)
end

#reverse_provider_credit(amazon_provider_credit_id, credit_reversal_reference_id, amount, currency_code: @currency_code, credit_reversal_note: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Parameters:

  • amazon_provider_credit_id (String)
  • credit_reversal_reference_id (String)
  • amount (String)


787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
# File 'lib/pay_with_amazon/client.rb', line 787

def reverse_provider_credit(
        amazon_provider_credit_id,
        credit_reversal_reference_id,
        amount,
        currency_code: @currency_code,
        credit_reversal_note: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'ReverseProviderCredit',
    'SellerId' => merchant_id,
    'AmazonProviderCreditId' => amazon_provider_credit_id,
    'CreditReversalReferenceId' => credit_reversal_reference_id,
    'CreditReversalAmount.Amount' => amount,
    'CreditReversalAmount.CurrencyCode' => currency_code
  }

  optional = {
    'CreditReversalNote' => credit_reversal_note,
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#set_billing_agreement_details(amazon_billing_agreement_id, platform_id: nil, seller_note: nil, seller_billing_agreement_id: nil, custom_information: nil, store_name: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Sets billing agreement details such as a description of the agreement and other information about the seller.



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
# File 'lib/pay_with_amazon/client.rb', line 192

def set_billing_agreement_details(
        amazon_billing_agreement_id,
        platform_id: nil,
        seller_note: nil,
        seller_billing_agreement_id: nil,
        custom_information: nil,
        store_name: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'SetBillingAgreementDetails',
    'SellerId' => merchant_id,
    'AmazonBillingAgreementId' => amazon_billing_agreement_id
  }

  optional = {
    'BillingAgreementAttributes.PlatformId' => platform_id,
    'BillingAgreementAttributes.SellerNote' => seller_note,
    'BillingAgreementAttributes.SellerBillingAgreementAttributes.SellerBillingAgreementId' => seller_billing_agreement_id,
    'BillingAgreementAttributes.SellerBillingAgreementAttributes.CustomInformation' => custom_information,
    'BillingAgreementAttributes.SellerBillingAgreementAttributes.StoreName' => store_name,
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#set_order_reference_details(amazon_order_reference_id, amount, currency_code: @currency_code, platform_id: nil, seller_note: nil, seller_order_id: nil, store_name: nil, custom_information: nil, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Sets order reference details such as the order total and a description for the order



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
# File 'lib/pay_with_amazon/client.rb', line 398

def set_order_reference_details(
        amazon_order_reference_id,
        amount,
        currency_code: @currency_code,
        platform_id: nil,
        seller_note: nil,
        seller_order_id: nil,
        store_name: nil,
        custom_information: nil,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'SetOrderReferenceDetails',
    'SellerId' => merchant_id,
    'AmazonOrderReferenceId' => amazon_order_reference_id,
    'OrderReferenceAttributes.OrderTotal.Amount' => amount,
    'OrderReferenceAttributes.OrderTotal.CurrencyCode' => currency_code
  }

  optional = {
    'OrderReferenceAttributes.PlatformId' => platform_id,
    'OrderReferenceAttributes.SellerNote' => seller_note,
    'OrderReferenceAttributes.SellerOrderAttributes.SellerOrderId' => seller_order_id,
    'OrderReferenceAttributes.SellerOrderAttributes.StoreName' => store_name,
    'OrderReferenceAttributes.SellerOrderAttributes.CustomInformation' => custom_information,
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end

#validate_billing_agreement(amazon_billing_agreement_id, merchant_id: @merchant_id, mws_auth_token: nil) ⇒ Object

Validates the status of the BillingAgreement object and the payment method associated with it



250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
# File 'lib/pay_with_amazon/client.rb', line 250

def validate_billing_agreement(
        amazon_billing_agreement_id,
        merchant_id: @merchant_id,
        mws_auth_token: nil)

  parameters = {
    'Action' => 'ValidateBillingAgreement',
    'SellerId' => merchant_id,
    'AmazonBillingAgreementId' => amazon_billing_agreement_id
  }

  optional = {
    'MWSAuthToken' => mws_auth_token
  }

  operation(parameters, optional)
end